/* Stolzl Font Faces */
@font-face {
  font-family: stolzl-100;
  src: url(../fonts/stolzl-100.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-300;
  src: url(../fonts/stolzl-300.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-400;
  src: url(../fonts/stolzl-400.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-500;
  src: url(../fonts/stolzl-500.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-700;
  src: url(../fonts/stolzl-700.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-b;
  src: url(../fonts/stolzl-book.woff2);
  font-display: swap;
}

.stol-100 {
  font-family: stolzl-100;
  font-weight: 100;
}

.stol-300 {
  font-family: stolzl-300;
  font-weight: 300;
}

.stol-400 {
  font-family: stolzl-400;
  font-weight: 400;
}

.stol-500 {
  font-family: stolzl-500;
  font-weight: 500;
}

.stol-700 {
  font-family: stolzl-700;
  font-weight: 700;
}

.stol-b {
  font-family: stolzl-b;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: stolzl-300, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 130px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #E17800;
    font-family: stolzl-400, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    padding: 8px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    background: #E17800;
    color: white;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(227, 121, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #E37900;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero_bg.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
     background-position-y: bottom;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 121, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.hero-content {
    text-align: center;
    /* padding: 150px 0 100px; */
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Otomanopee One', cursive;
    font-size: 5rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0px;
    color: #E37900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 4px white;
    text-stroke: 2px white;
}

.hero-subtitle {
    font-family: stolzl-b, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #562E00;
    margin-bottom: 50px;
}


/* Section Styles */
.section-title {
    font-family: stolzl-500, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 46px;
    font-weight: 500;
    color: #E37900;
    text-align: center;
    margin-bottom: 30px;
    line-height: 68.11px;
}

.section-subtitle {
    font-family: stolzl-500, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #E37900;
    text-align: center;
    margin-bottom: 30px;
    line-height: 68.11px;
}

.section-description {
    font-family: stolzl-300, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    line-height: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Popular Games Section */
.popular-games {
    padding: 100px 0;
    background: white;
}

/* How Rewards Section */
.how-rewards {
    padding: 100px 0;
    background: #FFEFD6;
}

.reward-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reward-card {
    background: #E37900;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 121, 0, 0.3);
}

.card-icon {
    margin: 30px 0;
}

.card-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.card-title {
    font-family: stolzl-500, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.card-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FFEFD6;
    padding: 50px;
    border-radius: 50px;
}

.testimonial-header {
    margin-bottom: 20px;
}

.player-rank {
    font-size: 1.25rem;
    font-family: stolzl-400;
    color: #000000;
    display: block;
    margin-bottom: 5px;
}

.player-name {
    font-family: stolzl-400, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #E37900;
    margin-bottom: 15px;
}

.testimonial-divider {
    width: 100%;
    height: 2px;
    background: #E37900;
    margin: 15px 0 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #A75A03;
    margin-bottom: 20px;
}

.player-location {
    font-size: 20px;
    color: #E37900;
    font-family: stolzl-400;
}

/* Data Protection Section */
.data-protection {
    padding: 100px 0;
    background: white;
}

.protection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.protection-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.protection-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #E37900;
    border-radius: 50px;
    padding: 0px 0px;
    width: 340px;
}

.protection-number {
    width: 70px;
    height: 70px;
    background: #E37900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: stolzl-700, -apple-system, BlinkMacSystemFont, sans-serif;
    flex-shrink: 0;
}

.protection-content h3 {
    font-family: stolzl-500, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #E37900;
    margin: 0;
}

.protection-item > p {
    font-family: stolzl-300, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #8B4513;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    background: #FFEFD6;
    border: 2px solid #E37900;
    border-radius: 20px;
    padding: 60px 40px;
}

.faq .section-title {
    margin-bottom: 50px;
    text-align: left;
}

.faq-items {
    margin-top: 30px;
}

.faq-item {
    background: transparent;
    border: none;
    /* border-bottom: 1px solid rgba(227, 121, 0, 0.3); */
    margin-bottom: 0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
}

.faq-question:hover {
    background: transparent;
}

.faq-question span {
    font-size: 22px;
    font-family: stolzl-400;
    color: #6F4400;
    line-height: 30.23px;
}

.faq-toggle {
    width: 34px;
    height: 17px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6F4400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(227, 121, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 30px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .nav-link.active,
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .reward-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protection-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .protection-header {
        padding: 12px 25px;
        gap: 12px;
        width: 240px;
    }
    
    .protection-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .protection-content h3 {
        font-size: 18px;
    }
    
    .protection-item > p {
        font-size: 14px;
    }
    
    .faq-container {
        padding: 40px 20px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        -webkit-text-stroke: 1px white;
        text-stroke: 1px white;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* .hero-content {
        padding: 120px 0 50px;
    } */
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .player-name {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .player-rank {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .player-location {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .card-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .protection-item > p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .protection-content h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .faq-question span {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .protection-header {
        width: 260px;
        padding: 10px 15px;
    }
    
    .protection-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .reward-card {
        padding: 30px 20px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 20px;
        line-height: 1.3;
    }
    
    .faq-container {
        padding: 30px 15px;
    }
    
    .faq-toggle {
        width: 24px;
        height: 12px;
    }
}

/* Footer Styles */
.footer {
    background: #E37900;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-family: stolzl-400, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-family: stolzl-300, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}