/* Core Styles */
:root {
    --bg-color: #050505;
    --text-color: #d4d4d4;
    --primary-orange: #f97316;
    --primary-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --mouse-x: 50vw;
    --mouse-y: 50vh;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: rgba(249, 115, 34, 0.3);
    color: white;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 115, 34, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 115, 34, 0.05) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    opacity: 0.2;
}

.cursor-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 115, 34, 0.15), transparent 40%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.logo-group:hover .logo-img {
    transform: rotate(12deg);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    color: #a3a3a3;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-beam {
    position: relative;
    background: #0a0a0a;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.btn-beam::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(transparent, transparent, transparent, var(--primary-orange), var(--primary-red));
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.btn-beam:hover::before {
    opacity: 1;
}

.btn-beam::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #0a0a0a;
    border-radius: inherit;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    position: relative;
    z-index: 10;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.05);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-orange);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.text-gradient-white {
    background: linear-gradient(to bottom, #fff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-fire {
    background: linear-gradient(to right, #fb923c, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.4));
}

.hero-desc {
    font-size: 1.125rem;
    color: #a3a3a3;
    max-width: 42rem;
    margin-bottom: 40px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Banner */
.banner {
    padding: 48px 24px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    background: rgba(67, 20, 7, 0.2);
    overflow: hidden;
}

.banner-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

@media (min-width: 768px) {
    .banner-container {
        flex-direction: row;
    }
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, var(--primary-orange), #dc2626);
    padding: 2px;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.banner-icon-inner {
    width: 100%;
    height: 100%;
    background: #050505;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.banner-subtitle {
    color: var(--primary-orange);
    font-weight: 500;
}

.banner-status {
    text-align: right;
}

.status-label {
    font-size: 0.875rem;
    color: #a3a3a3;
    margin-bottom: 4px;
}

.status-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1.25rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-orange);
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary-orange);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Video */
.trailer {
    padding: 96px 24px;
    background: black;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.video-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(249, 115, 34, 0.2);
    border: 1px solid rgba(249, 115, 34, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
}

/* Tokenomics */
.tokenomics {
    padding: 128px 24px;
    background: #050505;
    overflow: hidden;
}

.donut-chart-container {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(#ea580c 0% 30%,
            #f59e0b 30% 55%,
            #fbbf24 55% 75%,
            #c2410c 75% 85%,
            #9a3412 85% 95%,
            #f97316 95% 100%);
    box-shadow: 0 0 60px rgba(234, 88, 12, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 40px 0;
}

.donut-chart-container:hover {
    transform: scale(1.05) rotate(5deg);
}

.donut-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-color: #050505;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: inset 0 0 30px rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.3);
    z-index: 10;
}

.donut-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.donut-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a3a3a3;
    letter-spacing: 0.2em;
    margin-top: 8px;
}

/* Bento Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: crosshair;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.7s ease;
}

.gallery-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    border-left: 2px solid var(--primary-orange);
    padding-left: 12px;
    transform: translateY(16px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* FAQ */
.faq-card {
    margin-bottom: 16px;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #a3a3a3;
}

.faq-icon.active {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0 24px;
    color: #a3a3a3;
}

.faq-content.active {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 24px;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.2); }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: black;
    padding: 48px 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-copy {
    color: #737373;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}
