/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@400;500;700&display=swap');

/* CSS VARIABLES */
:root {
  --color-primary: #10B981;
  --color-secondary: #059669;
  --color-accent: #34D399;
  --color-dark: #064E3B;
  --color-light: #F0FDF4;
  --color-bg: #FFFFFF;
  --color-text: #333;
  --color-text-light: #666;
  --color-white: #FFFFFF;
  --color-border: #E5E7EB;
  --color-shadow: rgba(6, 78, 59, 0.1);
  --font-heading: 'Russo One', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius: 8px;
  --spacing-unit: 1rem;
  --spacing-scale: 1.5;
  --section-padding: calc(var(--spacing-unit) * 4 * var(--spacing-scale));
  --container-width: 1200px;
  --transition-speed: 0.3s;
  --transition-ease: ease-in-out;
}

/* CSS RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
  text-wrap: balance;
}

p {
  margin-bottom: var(--spacing-unit);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-ease);
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  list-style: none;
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-light);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* UTILITY & LAYOUT CLASSES */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--spacing-unit) * 1.5);
  padding-right: calc(var(--spacing-unit) * 1.5);
}

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);

  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.section-padding.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 3 * var(--spacing-scale));
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-unit);
  position: relative;
  display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* HEADER & NAVIGATION */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.5) 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
}

.header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--color-shadow);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.logo a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.header.scrolled .logo a {
    color: var(--color-dark);
}

.nav__list {
  display: flex;
  gap: calc(var(--spacing-unit) * 2.5);
}

.nav__link {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

.header.scrolled .nav__link {
    color: var(--color-text);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
    color: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-speed) var(--transition-ease);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.4s ease-in-out;
    border-radius: 2px;
}

.header.scrolled .nav-toggle__bar {
    background-color: var(--color-dark);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-dark);
    transition: right var(--transition-speed) var(--transition-ease);
    padding-top: 100px;
  }

  .nav--visible {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-unit) * 2;
  }

  .nav__link {
    font-size: 1.25rem;
    color: var(--color-white);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle--active .nav-toggle__bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle--active .nav-toggle__bar:nth-child(2) {
      opacity: 0;
  }
  .nav-toggle--active .nav-toggle__bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 0.9) calc(var(--spacing-unit) * 2.5);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-speed) var(--transition-ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease-in-out;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn--primary {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
  transform: translateY(-3px);
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--large {
  padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 3);
  font-size: 1.25rem;
}

.btn--play {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    width: 100%;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn--play:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    color: var(--color-white);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero__bg-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 15s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--color-dark) 30%, rgba(6, 78, 59, 0.7) 60%, transparent 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 50%;
  text-align: left;
  animation: fade-up 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__badges {
    display: flex;
    gap: var(--spacing-unit);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-white);
  margin-bottom: var(--spacing-unit);
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: calc(var(--spacing-unit) * 2 * var(--spacing-scale));
  max-width: 500px;
  line-height: 1.6;
}

.hero__cta {
    margin-top: var(--spacing-unit);
}

@media (max-width: 1024px) {
    .hero__bg-image-container { width: 100%; clip-path: none; }
    .hero__overlay { background: rgba(6, 78, 59, 0.7); }
    .hero__content { max-width: 80%; margin: 0 auto; text-align: center; }
    .hero__badges { justify-content: center; }
    .hero__subtitle { max-width: 100%; }
}

@media (max-width: 768px) {
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1rem; }
    .hero__content { max-width: 100%; }
}


/* FEATURES SECTION */
.features {
    background-color: var(--color-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 2.5 * var(--spacing-scale));
}

.feature-card {
  background-color: var(--color-bg);
  padding: calc(var(--spacing-unit) * 2.5);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 4px 20px var(--color-shadow);
  transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
  opacity: 0;
  transform: translateY(20px);
  animation: card-fade-up 0.5s ease-out forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes card-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px var(--color-shadow);
}

.feature-card__icon {
  margin: 0 auto calc(var(--spacing-unit) * 1.5);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card__icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-unit);
}

.feature-card__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    position: relative;
    background-color: var(--color-bg);
}

.how-it-works__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works__timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    top: 20px;
    bottom: 20px;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.how-it-works__item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.how-it-works__item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 70px;
}

.how-it-works__item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 70px;
}

.how-it-works__step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    color: var(--color-white);
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border: 4px solid var(--color-light);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    text-align: center;
    box-shadow: 0 0 0 5px var(--color-bg);
}

.how-it-works__item:nth-child(odd) .how-it-works__step-number {
    right: -25px;
}

.how-it-works__item:nth-child(even) .how-it-works__step-number {
    left: -25px;
}

.how-it-works__content {
    padding: 20px;
    background-color: var(--color-light);
    position: relative;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.how-it-works__item:nth-child(even) .how-it-works__content {
    border-left: none;
    border-right: 5px solid var(--color-primary);
}

.how-it-works__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.how-it-works__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .how-it-works__timeline::after { left: 31px; }
    .how-it-works__item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; }
    .how-it-works__item:nth-child(even) { left: 0; }
    .how-it-works__step-number { left: 6px !important; }
}

/* GAMES SECTION */
.games {
    background-color: var(--color-dark);

}
.games .section-title,
.games .section-subtitle {
    color: var(--color-white);
}

.games .section-title::after {
    background: var(--color-white);
}

/* Carousel Styles */
.games-carousel {
    position: relative;
}

.games-carousel__container {
    position: relative;
}

.games-carousel__track-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 400px;
    width: 100%;
}

.games-carousel__track {
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}

.game-card--carousel {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.games-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed) ease;
    line-height: 50px;
}

.games-carousel__nav:hover {
    background-color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.games-carousel__nav.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.games-carousel__nav--prev { left: -25px; }
.games-carousel__nav--next { right: -25px; }

.games-carousel__dots {
    text-align: center;
    margin-top: 2rem;
}

.games-carousel__dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border: 2px solid var(--color-white);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.games-carousel__dot--active {
    background-color: var(--color-white);
}

@media (min-width: 1024px) {
    .game-card--carousel { 
        flex: 0 0 33.333%;
        width: 33.333%;
        max-width: 33.333%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .game-card--carousel { 
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .game-card--carousel { 
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .games-carousel__nav { display: none; }
}

/* GAME CARD */
.game-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
}

.game-card__image-container {
    position: relative;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.1);
}

.game-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    padding: 0.3em 0.8em;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.game-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--color-white);
}

.game-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.game-card__description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: rgba(255,255,255,0.8);
}


/* BONUSES SECTION */
.bonuses {
    background-color: var(--color-light);
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2 * var(--spacing-scale));
}

.bonus-card {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: all var(--transition-speed) ease;
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px var(--color-shadow);
}

.bonus-card__image {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.bonus-card__title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.bonus-card__text {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* CTA SECTION */
.cta {
    background: linear-gradient(45deg, var(--color-dark), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.cta__container {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}


/* TESTIMONIALS SECTION */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2 * var(--spacing-scale));
}

.testimonial-card {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 4px 20px var(--color-shadow);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    text-align: right;
}

.testimonial-card__author-name {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: bold;
    font-size: 1.1rem;
}

/* GALLERY SECTION */
.gallery {
    background-color: var(--color-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--color-shadow);
    aspect-ratio: 1/1;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.9), transparent);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__title {
    font-size: 1.25rem;
    color: var(--color-white);
}

/* FOOTER */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--section-padding);
    font-size: 0.9rem;
}

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

.footer__logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer__description {
    max-width: 350px;
}

.footer__title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer__list li {
    margin-bottom: 0.75rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.footer__link:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer__logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer__logos a {
    display: inline-block;
    transition: transform var(--transition-speed) ease;
    text-decoration: none;
}

.footer__logos a:hover {
    transform: scale(1.05);
}

.footer__logo-img {
    max-height: 40px;
    opacity: 0.8;
    transition: opacity var(--transition-speed) ease;
    display: block;
}

.footer__logos a:hover .footer__logo-img {
    opacity: 1;
}

.footer__bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer__disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.footer__copyright {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__description { margin: 0 auto 2rem; }
    .footer__logos { justify-content: center; }
}


/* STATIC PAGES STYLES */
.page-header {
    background: linear-gradient(45deg, var(--color-dark), var(--color-secondary));
    color: var(--color-white);
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--color-white);
}

.text-content {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background: #FFFFFF !important;
    color: #333333 !important;
    min-height: 400px;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.header-two {
        background: linear-gradient(45deg, var(--color-dark), var(--color-secondary));
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: #333 !important;
}

.content-container * {
    color: #333 !important;
}

.content-container h3 {
    color: #333 !important;
}

.content-container p {
    color: #333 !important;
}

.content-container li {
    color: #333 !important;
}

.content-container strong {
    color: #333 !important;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
}

.text-content p, .text-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.text-content strong {
    color: var(--color-text);
}

.text-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.text-content ul li {
    margin-bottom: 0.5rem;
}
