/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cantarell', 'Inter', 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #000000 0%, #111111 50%, #04190c 100%);
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
}

.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, 
        #000000 0%, 
        #0a0a0a 10%,
        #111111 20%, 
        #0d1410 30%,
        #0a0f0b 40%, 
        #04190c 50%,
        #062012 55%,
        #04190c 60%, 
        #062012 65%,
        #0a0f0b 70%,
        #0d1410 75%,
        #111111 80%, 
        #0a0a0a 90%,
        #000000 100%);
}

/* Background Overlay */
.bg-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 2082px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(0, 6, 2, 0.95) 15%,
        rgba(4, 25, 12, 0.85) 35%, 
        rgba(6, 32, 18, 0.9) 45%,
        rgba(4, 25, 12, 0.85) 55%,
        rgba(0, 6, 2, 0.95) 75%,
        rgba(0, 0, 0, 0.98) 100%);
    z-index: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 124px 20px 50px;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
    background: transparent;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 61px;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.61px;
}

.hero-title .highlight-green {
    color: #1efa72;
    font-weight: 900;
}

.hero-description {
    font-family: 'Cantarell', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: white;
    max-width: 1011px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-graphic {
    margin: 60px auto;
    max-width: 412px;
    height: 505px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-box-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.disclaimer {
    font-family: 'Cantarell', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: white;
    text-align: center;
    max-width: 646px;
    margin: 100px auto 0;
    letter-spacing: -1.26px;
    position: relative;
    z-index: 1;
}

/* Video Section */
.video-section {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, 
        rgba(4, 25, 12, 0.95) 0%, 
        rgba(4, 25, 12, 1) 25%, 
        rgba(5, 28, 14, 1) 50%,
        rgba(4, 25, 12, 1) 75%, 
        rgba(4, 25, 12, 0.95) 100%);
    overflow: hidden;
}

.video-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/christmas-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    mix-blend-mode: soft-light;
    z-index: 0;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.4) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(17, 17, 17, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-section-title {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.2;
    color: white;
    text-align: center;
    margin-bottom: 95px;
    letter-spacing: -0.52px;
}

.video-section-title .highlight-green {
    color: #1efa72;
}

.video-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 732px;
    padding: 0 250px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1004px;
    height: 732px;
    border-radius: 45px;
    overflow: visible;
    background: transparent;
    flex-shrink: 0;
    z-index: 3;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 1004px;
    height: 732px;
    border-radius: 45px;
    overflow: hidden;
    background: #000;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 3;
}

.coin-coin-left,
.coin-coin-right {
    position: absolute;
    width: 350px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(30, 250, 114, 0.9)) brightness(1.2);
    z-index: 2;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.coin-coin-left {
    left: -250px;
}

.coin-coin-right {
    right: -250px;
}

.video-player::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-player::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}


/* Features Section */
.features-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 20px;
    background: transparent;
}

.feature-card {
    display: flex;
    gap: 62px;
    align-items: center;
    margin-bottom: 120px;
    flex-wrap: wrap;
}

.feature-card-2 {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 590px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    min-width: 300px;
    max-width: 520px;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    color: white;
    margin-bottom: 33px;
    letter-spacing: -0.45px;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.6;
    color: white;
    letter-spacing: -0.23px;
}

.feature-text p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.cta-card {
    background-color: #1a1c1b;
    border-radius: 56px;
    padding: 116px 31px;
    max-width: 1224px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.cta-logo {
    width: 246px;
    height: 246px;
    object-fit: contain;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.32;
    color: white;
    text-align: center;
    letter-spacing: -0.45px;
}

.cta-button {
    background-color: #22fb75;
    color: #010101;
    padding: 22px 60px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.07;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -0.28px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 251, 117, 0.3);
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
    background: transparent;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.32;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.52px;
}

.faq-container {
    max-width: 928px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: transparent;
}

.faq-accordion {
    margin-bottom: 0;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}

.faq-accordion:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 30px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: black;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question.active {
    background-color: #f0f0f0;
}

.faq-icon {
    transition: transform 0.3s;
    font-size: 20px;
    color: black;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px 50px;
    text-align: center;
    background: transparent;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    margin-bottom: 42px;
}

.footer-logo {
    width: 139px;
    height: 139px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    width: 33px;
    height: 33px;
    border: 0.5px solid white;
    border-radius: 16.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
    background-color: transparent;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    padding: 7px;
    box-sizing: border-box;
}

.social-icon-telegram svg {
    padding: 7px 6px;
}

.social-icon-facebook svg {
    padding: 3.5px;
}

.social-icon-x svg {
    padding: 6px;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.footer-link {
    font-family: 'Cantarell', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: white;
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: white;
    opacity: 0.2;
    margin: 42px 0;
}

.footer-links {
    font-family: 'Cantarell', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: white;
}

.footer-links a {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .feature-card {
        flex-direction: column;
    }
    
    .feature-card-2 {
        flex-direction: column;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .feature-text {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .video-section-title {
        font-size: 36px;
    }
    
    .video-wrapper {
        min-height: 400px;
        padding: 0 20px;
    }
    
    .video-container {
        height: 400px;
        max-width: 100%;
    }
    
    .video-player {
        height: 100%;
    }
    
    .coin-coin-left,
    .coin-coin-right {
        width: 150px;
        height: 150px;
    }
    
    .coin-coin-left {
        left: -100px;
    }
    
    .coin-coin-right {
        right: -100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .cta-card {
        padding: 60px 20px;
    }
    
    .faq-question {
        font-size: 18px;
        padding: 20px;
    }
}

