@import url('https://fonts.googleapis.com/css2?family=Knewave&family=DM+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9B5DE5;
    --primary-dark: #7B2CBF;
    --primary-light: #C77DFF;
    --pink: #FF4D8F;
    --pink-light: #FF9CF2;
    --background: #1A0A2E;
    --background-alt: #2D1B4E;
    --background-dark: #0F0620;
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --yellow: #F9B72B;
    --telegram: #0088cc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.flex-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 10, 46, 0.8) 0%,
        rgba(26, 10, 46, 0.6) 30%,
        rgba(26, 10, 46, 0.6) 70%,
        rgba(26, 10, 46, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    text-align: center;
}

.hero-heading {
    font-family: 'Knewave', cursive;
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(155, 93, 229, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--primary-light);
    text-shadow: 0 0 60px rgba(199, 125, 255, 1);
}

.highlight-pink {
    color: var(--pink);
    text-shadow: 0 0 40px rgba(255, 77, 143, 0.8);
}

.highlight-purple {
    color: var(--primary-light);
    text-shadow: 0 0 40px rgba(199, 125, 255, 0.8);
}

.highlight-white {
    color: #FFFFFF;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    color: var(--primary-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 28rem;
}

.ca-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ca-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.ca-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.ca-text {
    font-family: monospace;
    font-size: 1.125rem;
    color: var(--primary-light);
    font-weight: 600;
}

.copy-btn {
    background: rgba(155, 93, 229, 0.3);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(155, 93, 229, 0.5);
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 20;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    border: none;
    height: 3rem;
    padding: 0 2rem;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(155, 93, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(155, 93, 229, 0.6);
}

.btn-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--pink);
    color: white;
    border: none;
    height: 3rem;
    padding: 0 2rem;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 77, 143, 0.4);
}

.btn-pink:hover {
    background: #ff3369;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 77, 143, 0.6);
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--telegram);
    color: white;
    border: none;
    height: 3rem;
    padding: 0 2rem;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.6);
}

.btn-large {
    height: 4rem;
    padding: 0 3rem;
    font-size: 1.25rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-footer {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    z-index: 30;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.9), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
}

.copyright {
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
}

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

.social-icon {
    color: var(--text-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-light);
    transform: scale(1.2);
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pattern-1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 143, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-1::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-2::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-2::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 156, 242, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-3::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-3::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-4::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-4::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-5::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-5::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-6::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-6::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 0%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 156, 242, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #2D1B4E 0%, #5a189a 25%, var(--primary) 50%, #7B2CBF 75%, #3d1a6e 100%);
    z-index: 60;
    padding: 4rem 0;
    overflow: hidden;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-image {
    max-width: 350px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 500px;
}

.about-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--yellow);
    font-style: italic;
    margin-top: 0.5rem;
}

.section-label {
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.section-heading {
    font-family: 'Knewave', cursive;
    font-size: 2.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1rem;
    max-width: 28rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.gallery-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 50%, var(--background) 100%);
    padding: 4rem 0;
    z-index: 50;
    text-align: center;
    overflow: hidden;
}

.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 93, 229, 0.3);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    background: linear-gradient(135deg, var(--background-alt) 0%, #3d1a6e 50%, var(--background) 100%);
    z-index: 50;
    padding: 4rem 0;
    overflow: hidden;
}

.social-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    text-align: center;
}

.social-video {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(155, 93, 229, 0.3);
}

.social-video video {
    width: 100%;
    height: auto;
    display: block;
}

.tokenomic-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 30%, var(--primary-dark) 60%, #3d1a6e 100%);
    z-index: 50;
    padding: 4rem 0;
    overflow: hidden;
    text-align: center;
}

.tokenomic-section .section-heading,
.tokenomic-section .section-label,
.tokenomic-section .section-description {
    color: white;
}

.tokenomic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tokenomic-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.tokenomic-card:hover {
    transform: translateY(-5px);
}

.tokenomic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tokenomic-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.tokenomic-icon svg {
    color: white;
}

.tokenomic-card h3 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomic-value {
    font-family: 'Knewave', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.25rem;
}

.tokenomic-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.faq-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 30%, #3d1a6e 70%, var(--background) 100%);
    z-index: 50;
    padding: 4rem 0;
    overflow: hidden;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.faq-list {
    width: 100%;
    max-width: 42rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    text-align: left;
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--background);
}

.cta-section {
    position: relative;
    min-height: 400px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #5a189a 30%, var(--pink) 70%, #c9184a 100%);
    z-index: 50;
    padding: 4rem 0;
    overflow: hidden;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.cta-buttons {
    margin-top: 1rem;
}

.main-footer {
    background: linear-gradient(180deg, var(--background-dark) 0%, #0a0412 100%);
    padding: 3rem 0 2rem;
}

.main-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand-center {
    font-family: 'Knewave', cursive;
    font-size: 3rem;
    color: var(--primary-light);
    text-align: center;
}

.footer-tagline {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.footer-social-center {
    display: flex;
    justify-content: center;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .gallery-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .section-heading {
        font-size: 3.5rem;
    }
    
    .tokenomic-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tokenomic-value {
        font-size: 1.75rem;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
    
    .about-text-wrapper {
        text-align: left;
        align-items: flex-start;
    }
    
    .about-image {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-image {
        max-width: 450px;
    }
    
    .section-heading {
        font-size: 4rem;
    }
    
    .section-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .about-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
}

@media (min-width: 1280px) {
    .hero-heading {
        font-size: 5rem;
        line-height: 82px;
    }
}
