/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #fff;
    background: rgba(36, 0, 0, 1);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1,
.nav-brand a {
    color: rgba(255, 173, 42, 1);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: unset;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-menu a:hover {
    color: rgba(255, 173, 42, 1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url(/wp-content/themes/techfile_63dpbpwy/images/hero.png) no-repeat center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 100px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-gold {
    color: rgba(255, 173, 42, 1);
}

.title-white {
    color: #fff;
}

.hero-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    color: rgba(255, 173, 42, 1);
    background-color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(152, 3, 3, 1);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0px 0px 14px 0px rgba(255, 173, 42, 1);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 173, 42, 1);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 173, 42, 1);
    top: 10%;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 173, 42, 1);
    bottom: 20%;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 50px 0 30px;
}

.section-title {
    font-size: 80px;
    color: #fff;
    text-align: center;

}

.about .section-title {
   margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.about-text p {
    opacity: 0.8;
}

.about-text .cta-button {
  margin-top: 60px;
}

section {
  position: relative;
}

.section-decor {
  position: absolute;
  width: 64px;
  height: 64px;
  z-index: 2;
}

.about .section-decor {
  top: 30%;
  right: 0;
}
/* Numbers Section */
.numbers {
    padding: 30px 0;
}

.numbers .section-decor {
  top: 0;
  left: 0;
}

.numbers .section-title {
  margin-bottom: 20px;
}

.numbers-subtitle {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 16px;
    font-size: 14px;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 20px;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    padding: 20px;
    border-radius: 28px;
}

.stat-card h3::before {
  content: '';
  width: 3px;
  height: 38px;
  border-radius: 2px;
  display: block;

}

.stat-dark {
  border: 1px solid rgba(255, 255, 255, 1);
}

.stat-orange {
    background: rgba(255, 173, 42, 1);
    color: #2a1810;
    border: 1px solid rgba(0, 0, 0, 1);
}

.stat-card h3 {
  display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-bottom: 5px;
}

.stat-dark.stat-card h3::before {
  background: #fff;
}

.stat-orange.stat-card h3::before {
  background: #2a1810;
}

/* Vibe Section */
.vibe-section {
    padding: 30px 0;
}

.vibe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


.vibe-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    aspect-ratio: 721/807;
    border-radius: 40px;
    margin-left: -60px;
    object-fit: cover;
}

.vibe-options h2 {
    margin-bottom: 30px;
    text-align: left;
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.vibe-card {
    background: rgba(255, 173, 42, 1);
    color: #2a1810;
    padding: 1.5rem;
    border-radius: 8px;
}

.vibe-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.vibe-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.vibe-section .cta-button {
    color: #fff;
}


/* Games Section */
.games-section {
    padding: 30px 0;
    margin-top: 80px;
    min-height: max-content;
}

.games-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(194px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card span {
  display: none;
  transition: all 0.3s ease;
  color: #fff;
  padding: 15px;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.game-card:hover::after {
    background: linear-gradient(180deg, rgba(18, 18, 21, 0) 0%, #121215 100%);
}

.game-card:hover span {
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 5;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Section */
.scroll-section {
    padding: 30px 0 50px;
}

.scroll-section .section-decor {
  top: 0;
  right: 10px;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.scroll-content {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 30px;
    align-items: center;
}

.scroll-content .section-title {
  text-align: left;
}

.scroll-content p {
  font-size: 14px;
  opacity: 0.8;
}

.scroll-content .cta-button {
  color: #fff;
  margin-top: 54px;
}

.scroll-image {
    margin-right: -60px;
}
.scroll-image img {
    width: 100%;
    height: auto;
    border-radius: 40px;

}

/* Footer */
.footer {
    background: rgba(15, 0, 1, 1);
    padding: 3rem 0 1rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3,
.footer-brand a {
    color: rgba(255, 173, 42, 1);
    font-size: 1.5rem;
    text-decoration: unset;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 173, 42, 1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #3d2817;
    opacity: 0.7;
}

section {
  overflow-x: hidden;
}

@media (max-width: 920px) {
  .hero-title {
    font-size: 80px;
  }

  .section-title {
    font-size: 60px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(42, 24, 16, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .vibe-image img {
      margin-left: 0;
    }

    .section-decor {
      display: none;
    }

    .scroll-image {
      margin-right: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .about-content,
    .vibe-content,
    .scroll-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vibe-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {


    .hero-description {
        font-size: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.privacy p,
.privacy li {
  font-size: 14px;
  opacity: 0.8;
}


.privacy {
  padding-top: 30px;
  padding-bottom: 30px;
}
.privacy li {
  list-style-position: inside;
}