:root {
    --primary: #d4a373;
    --primary-light: #faedcd;
    --accent: #ccd5ae;
    --bg: #1a1a1a;
    --text: #fefae0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 163, 115, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(204, 213, 174, 0.1) 0%, transparent 40%);
    z-index: -1;
}

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

header {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.buy-btn {
    background: var(--primary);
    color: var(--bg) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2rem;
}

h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.ca-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.ca-label {
    font-weight: 900;
    color: var(--primary);
    font-size: 0.9rem;
}

code {
    font-family: monospace;
    font-size: 1rem;
    opacity: 0.9;
}

#copy-btn {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
}

#copy-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn.secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
}

.btn.secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.blorbo-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

#main-blorbo {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: rgba(0,0,0,0.3);
    filter: blur(15px);
    border-radius: 50%;
    animation: shadow-size 6s ease-in-out infinite;
}

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

@keyframes shadow-size {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(0.7); opacity: 0.1; }
}

.about, .Blorbonomics {
    padding: 8rem 0;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.glass-card p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

footer {
    padding: 4rem 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 80px;
        gap: 2rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        margin: 0 auto 2rem;
    }

    .ca-container {
        margin: 0 auto 2.5rem;
        max-width: 100%;
    }

    code {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .about, .Blorbonomics {
        padding: 5rem 0;
    }

    h2 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 2rem;
    }

    .glass-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .ca-container {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    code {
        font-size: 0.75rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
}
