/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a1a;
  color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #ffffff;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* Container */
.header__container,
.hero__container,
.about__container,
.gallery__container,
.features__container,
.reviews__container,
.cta__container,
.contact__container,
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.header__logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

/* Navigation */
.header__nav {
  display: block;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header__nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #4facfe;
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__menu-btn span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: block;
  }

  .header__nav--active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    padding: 1rem 0;
  }

  .header__nav-item {
    padding: 0.5rem 2rem;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__menu-btn--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__menu-btn--active span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-btn--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(79, 172, 254, 0.1) 0%,
    transparent 50%
  );
}

.hero__container {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #a0a0ff;
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.hero__btn--primary {
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero__btn-img {
  height: 40px;
  width: auto;
}

.hero__stats {
  display: flex;
  gap: 2rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4facfe;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: #cccccc;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero__game-preview {
  width: 280px;
  height: 180px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero__game-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a3e 0%, #3a3a5e 100%);
  position: relative;
}

.hero__game-screen::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0.6;
  border-radius: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
}

/* About Section */
.about {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.about__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__content {
  display: grid;
  gap: 2rem;
}

.about__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a0a0ff;
  margin-bottom: 1rem;
}

.about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 2rem;
}

.about__features {
  list-style: none;
}

.about__feature {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #cccccc;
}

.about__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4facfe;
  font-weight: bold;
}

.about__image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2a2a3e 0%, #3a3a5e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.875rem;
}

.about__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
}

.gallery__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__image-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #2a2a3e 0%, #3a3a5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.875rem;
}

.gallery__item--large .gallery__image-placeholder {
  height: 300px;
}

.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(79, 172, 254, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.gallery__play-btn:hover {
  background: rgba(79, 172, 254, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.features__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features__grid {
  display: grid;
  gap: 2rem;
}

.features__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.features__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.features__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.features__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #a0a0ff;
}

.features__item-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
}

.reviews__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews__grid {
  display: grid;
  gap: 2rem;
}

.reviews__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews__stars {
  color: #ffd700;
  font-size: 1.25rem;
}

.reviews__score {
  font-weight: 600;
  color: #4facfe;
}

.reviews__text {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.reviews__author {
  font-weight: 600;
  color: #a0a0ff;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.contact__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__content {
  display: grid;
  gap: 3rem;
}

.contact__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a0a0ff;
  margin-bottom: 1rem;
}

.contact__description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact__details {
  display: grid;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact__detail-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact__detail-content h4 {
  color: #a0a0ff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact__detail-content p {
  color: #cccccc;
  margin: 0;
}

.contact__link {
  color: #4facfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: #00f2fe;
}

.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.contact__form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a0a0ff;
  margin-bottom: 2rem;
  text-align: center;
}

.contact__form-group {
  margin-bottom: 1.5rem;
}

.contact__form-label {
  display: block;
  color: #cccccc;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact__form-input,
.contact__form-select,
.contact__form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact__form-input:focus,
.contact__form-select:focus,
.contact__form-textarea:focus {
  outline: none;
  border-color: #4facfe;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.2);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-submit {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  text-align: center;
}

.cta__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta__btn {
  display: inline-block;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.cta__btn:hover {
  transform: translateY(-2px);
}

.cta__btn-img {
  height: 60px;
  width: auto;
}

.cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta__info p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Footer */
.footer {
  background: #0a0a1a;
  padding: 60px 0 20px;
}

.footer__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.footer__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #a0a0ff;
}

.footer__description,
.footer__text {
  color: #cccccc;
  line-height: 1.6;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: #cccccc;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #4facfe;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer__copyright {
  color: #888;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal.modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__content {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #cccccc;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Modal Media Styles */
.modal__media {
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__media video,
.modal__media img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.modal__media video {
  max-height: 70vh;
}

.modal__media img {
  max-height: 80vh;
  object-fit: contain;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
  .modal__content {
    padding: 1.5rem;
    max-width: 95%;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal__media video {
    max-height: 50vh;
  }

  .modal__media img {
    max-height: 60vh;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .header__nav {
    position: static;
    width: auto;
    background: none;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .header__menu-btn {
    display: none;
  }

  .contact__content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .hero__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__game-preview {
    width: 350px;
    height: 220px;
  }

  .about__content {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--large {
    grid-column: span 2;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__info {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }

  .hero__game-preview {
    width: 400px;
    height: 250px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Policy Pages Styles */
.policy {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
}

.policy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy__content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.policy__title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy__date {
  color: #a0a0ff;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy__section {
  margin-bottom: 2rem;
}

.policy__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4facfe;
  margin-bottom: 1rem;
}

.policy__subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #a0a0ff;
  margin: 1.5rem 0 0.75rem 0;
}

.policy__text {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy__list {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy__list li {
  margin-bottom: 0.5rem;
}

.policy__link {
  color: #4facfe;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy__link:hover {
  color: #00f2fe;
}

.policy__contact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.policy__contact p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

/* Cookie Table */
.policy__cookie-table {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 1rem 0;
  overflow: hidden;
}

.policy__cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy__cookie-row:last-child {
  border-bottom: none;
}

.policy__cookie-row:first-child {
  background: rgba(79, 172, 254, 0.1);
}

.policy__cookie-cell {
  color: #cccccc;
  font-size: 0.875rem;
}

/* Cookie Preferences */
.policy__cookie-preferences {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.policy__preference-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy__preference-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy__preference-group h4 {
  color: #a0a0ff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.policy__preference-group p {
  color: #cccccc;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Toggle Switch */
.policy__toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  align-self: flex-start;
}

.policy__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.policy__toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 34px;
}

.policy__toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.policy__toggle input:checked + .policy__toggle-slider {
  background-color: #4facfe;
}

.policy__toggle input:checked + .policy__toggle-slider:before {
  transform: translateX(26px);
}

.policy__toggle--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy__toggle--disabled .policy__toggle-slider {
  cursor: not-allowed;
  background-color: #666;
}

/* Policy Buttons */
.policy__preference-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy__btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.policy__btn--primary {
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.policy__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.policy__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Tablet Styles for Policy Pages */
@media (min-width: 768px) {
  .policy__content {
    padding: 3rem;
  }

  .policy__title {
    font-size: 2.5rem;
  }

  .policy__cookie-row {
    grid-template-columns: 1fr 3fr 1fr;
  }

  .policy__preference-group {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .policy__preference-group div {
    flex: 1;
  }

  .policy__preference-actions {
    flex-direction: row;
    justify-content: center;
  }

  .policy__btn {
    min-width: 200px;
  }
}

/* Desktop Styles for Policy Pages */
@media (min-width: 1024px) {
  .policy__container {
    padding: 0 40px;
  }

  .policy__content {
    padding: 4rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .hero__container,
  .about__container,
  .gallery__container,
  .features__container,
  .reviews__container,
  .cta__container,
  .footer__container {
    padding: 0 40px;
  }
}
