@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Remove blue focus outlines on interactive elements */
button, a, input, textarea, select, .quest, .try, .try1, .buttons, .box, .box1, .modal-close {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 60px;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0) 100%);
  transition: background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(10px);
}

.navbar li {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.logo-text span {
  color: #666;
  font-weight: 300;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  transition: all 0.4s ease;
}

.logo img:hover {
  filter: grayscale(100%) brightness(1.5);
}

.buttons {
  background-color: transparent;
  color: #ffffff;
  padding: 10px 24px;
  display: flex;
  flex-direction: row;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.buttons:hover {
  background-color: #ffffff;
  color: #050505;
  letter-spacing: 5px;
}

/* === HERO === */
.main {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  align-items: center;
  overflow-x: hidden;
  justify-content: center;
  display: flex;
  background-position: center;
  background-image: linear-gradient(rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.95)), url(poster.png);
  position: relative;
}

.main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #050505, transparent);
  pointer-events: none;
}

.area {
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}

.area h1 {
  font-size: 54px;
  word-spacing: 8px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.area h3 {
  font-size: 18px;
  font-weight: 300;
  color: #999999;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 0.6s;
}

.search {
  width: 100%;
  max-width: 700px;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 0.9s;
}

.box {
  flex: 1;
  min-height: 65px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  color: #ffffff;
  padding: 0 24px;
  font-size: 12px;
  outline: none;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.box:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.box::placeholder {
  color: #666666;
  font-weight: 300;
}

.try {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #050505;
  min-height: 67px;
  padding: 0 36px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  letter-spacing: 3px;
  border: 1px solid #ffffff;
  white-space: nowrap;
}

.try:hover {
  background-color: transparent;
  color: #ffffff;
  letter-spacing: 5px;
}

.try i {
  margin-left: 10px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.try:hover i {
  transform: translateX(4px);
}

.area h4 {
  margin-top: 20px;
  font-weight: 300;
  color: #555555;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards 1.2s;
}

/* === FEATURE SECTIONS === */
.container1 {
  width: 100%;
  min-height: 500px;
  background-color: #050505;
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  text-align: left;
  border-top: 1px solid #111111;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.container1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #333;
  transition: width 1.2s ease;
}

.container1.revealed::before {
  width: 100%;
}

.container1 .image {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  align-self: center;
  object-fit: contain;
  flex: 1;
  max-width: 500px;
}

.container1 .image-inner {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.container1 .image-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.02) 50%,
    transparent 60%
  );
  animation: shimmer 4s infinite;
}

.image-placeholder {
  font-size: 60px;
  color: #222;
  z-index: 1;
}

.text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: center;
  align-content: center;
  flex: 1;
  max-width: 500px;
  padding: 0 40px;
}

.text p {
  font-size: 0.94rem;
  margin-top: 20px;
  line-height: 1.8;
  color: #888888;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.text h1 {
  font-size: 2.1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  font-weight: 700;
}

/* === FAQ === */
.question {
  width: 100%;
  min-height: auto;
  background-color: #050505;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-top: 1px solid #111111;
  padding: 100px 20px;
}

.question h1 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  font-size: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
}

.quest {
  width: 55%;
  min-height: 70px;
  background-color: #0f0f0f;
  color: #ffffff;
  align-items: center;
  justify-content: space-between;
  display: flex;
  text-align: left;
  flex-direction: row;
  margin: 6px 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #1a1a1a;
  padding: 0 30px;
}

.quest:hover {
  background-color: #151515;
  border-color: #333;
}

.quest.active {
  background-color: #151515;
  border-color: #333;
}

.quest .textbox {
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 16px;
  word-spacing: 2px;
  text-align: left;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 20px 0;
}

.quest i {
  font-size: 21px;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 20px;
}

.quest.active i {
  transform: rotate(45deg);
}

.answer {
  width: 55%;
  background-color: #0f0f0f;
  color: #888888;
  padding: 0 30px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #1a1a1a;
  border-top: none;
  margin-top: -6px;
  margin-bottom: 6px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.answer.show {
  max-height: 300px;
  padding: 24px 30px;
  border-color: #222;
}

.search1 {
  width: 55%;
  max-width: 700px;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 60px;
}

.box1 {
  flex: 1;
  min-height: 65px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  color: #ffffff;
  padding: 0 24px;
  font-size: 12px;
  outline: none;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.box1:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.box1::placeholder {
  color: #666666;
  font-weight: 300;
}

.try1 {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #050505;
  min-height: 67px;
  padding: 0 36px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  letter-spacing: 3px;
  border: 1px solid #ffffff;
  white-space: nowrap;
}

.try1:hover {
  background-color: transparent;
  color: #ffffff;
  letter-spacing: 5px;
}

.try1 i {
  margin-left: 10px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.try1:hover i {
  transform: translateX(4px);
}

.question h4 {
  color: #444444;
  margin-top: 20px;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 1px;
}

/* === FOOTER === */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 300px;
  background-color: #050505;
  margin-top: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #111111;
  padding: 60px 20px;
}

.footercon {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  min-height: 50px;
  background-color: transparent;
}

.footer .flex1 {
  color: #444;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-size: 10px;
  min-height: 30px;
  margin-bottom: 40px;
}

.footer .flex1 h5 {
  align-self: flex-start;
  color: #666;
  font-weight: 300;
  letter-spacing: 1px;
}

.list1 {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-items: flex-start;
  align-self: flex-start;
  justify-content: center;
  min-height: 50px;
  font-size: 10px;
  padding: 0px 50px;
  text-align: left;
}

.list1 li {
  font-size: 10px;
  margin: 8px 0;
  list-style-type: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-items: center;
  align-self: flex-start;
  justify-content: center;
}

.list1 li a {
  color: #555;
  text-decoration: none;
  font-size: 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.list1 li a:hover {
  color: #ffffff;
  letter-spacing: 1px;
}

.end {
  width: 100%;
  min-height: 60px;
  background-color: #050505;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #333;
  border-top: 1px solid #111;
  padding: 20px;
}

.end h2 {
  display: flex;
  flex-direction: row;
  font-size: 10px;
  color: #444;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* === SCROLL REVEAL CLASSES === */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}


/* === DONATION MODAL === */
#donation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#donation-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.95);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #0a0a0a;
  border: 1px solid #333;
  padding: 60px 80px;
  text-align: center;
  z-index: 1;
  max-width: 500px;
  width: 90%;
}

.modal-content h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 27px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 700;
}

.modal-content p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  color: #888;
  font-weight: 300;
  letter-spacing: 1px;
}

.modal-content a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.modal-content a:hover {
  color: #ccc;
  border-bottom-color: #ccc;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.modal-close:hover {
  color: #ffffff;
}

/* === REAL FOOTER LINKS === */
.real-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  gap: 40px;
}

.real-links li {
  margin: 0;
  list-style: none;
}

.real-links li a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.real-links li a:hover {
  color: #ffffff;
  letter-spacing: 3px;
}

.real-links li a i {
  font-size: 14px;
}

@media (min-width: 250px) and (max-width: 980px) {
  .real-links {
    flex-direction: column;
    gap: 20px;
  }

  .modal-content {
    padding: 40px 30px;
  }

  .modal-content h2 {
    font-size: 20px;
  }
}


/* === FEATURE IMAGES === */
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.container1:hover .feature-img {
  filter: grayscale(100%) contrast(1.2) brightness(1);
  transform: scale(1.02);
}

.container1 .image-inner {
  width: 100%;
  aspect-ratio: 16/10;
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.container1 .image-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.03) 50%,
    transparent 60%
  );
  animation: shimmer 6s infinite;
  pointer-events: none;
}