:root {
  --DarkBlue: #0E0E13;
  --Orange: #FF9C66;
  --LightOrange: #FFB166;
  --White: #FFF;
  --Shadow: rgba(0, 0, 0, 0.9);
  --Background: #1f1f26
}

body {
  background: var(--Background);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: Outfit, Futura, 'Franklin Gothic', Calibri, sans-serif;
  color: var(--White);
}

p {
  margin: 0.25rem 0;
}

a {
  color: var(--Orange);
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

a:hover {
  color: var(--LightOrange);
}

.main-container {
  min-width: 70vw;
  max-width: 1200px;
  height: 95vh;
  overflow-y: auto;
  background-color: var(--DarkBlue);
  border: 4px solid var(--Orange);
  border-radius: 5px;
  box-shadow: 0 0 15px var(--Shadow);
  scrollbar-color: var(--Orange) transparent;
  scrollbar-width: thin;
}

.container {
  max-width: 80%;
  margin: 1rem auto;
  padding: 1.5rem;
  font-size: 1.2rem;
  border-radius: 5px;
}

.center {
  text-align: center;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  height: 125px;
  width: auto;
}

.title {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--Orange);
}


.label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--Orange);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  width: 220px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--Orange);
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px var(--Shadow);
  border-color: var(--LightOrange);
  color: inherit;
}

.gallery-image-frame {
  width: 100%;
  aspect-ratio: 1 / 1.41;
  overflow: hidden;
  background-color: #000;
  border-bottom: 2px solid var(--Orange);
}

.gallery-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  padding: 1rem;
  text-align: center;
  background-color: var(--Background);
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--White);
  transition: color 0.3s;
}

.gallery-card:hover .gallery-title {
  color: var(--Orange);
}

.twitter-overlay-btn {
  position: fixed;
  bottom: 85px; 
  left: 20px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 24px;
  border-radius: 50px;
  min-width: 140px;
  box-sizing: border-box;
  background-color: #1DA1F2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  color: #fff !important;
  font-family: inherit; 
  font-weight: 700;
  font-size: 16px; 
  text-decoration: none;
  line-height: 1;
}

.twitter-overlay-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #fff;
}

@media screen and (max-width: 1536px) {
  .twitter-overlay-btn {
    display: none !important;
  }

  [id^="kofi-widget-overlay-"] {
    display: none !important;
  }
}


@media screen and (max-width: 768px) {
  .header {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .title {
    font-size: 2.2rem;
  }

  .container {
    max-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .header {
    gap: 0.3rem;
  }

  .container {
    padding: 0.8rem;
  }
  
  .gallery-card {
    width: 100%;
    max-width: 280px;
  }
  
  .twitter-overlay-btn {
    bottom: 80px;
    min-width: auto;
  }
}