:root {
    --primary: #F3BA2F;
    --secondary: #0F0F2D;
    --accent: #2b2f8e;
    --text: #ffffff;
    --background: #0a0a1a;
    --card-bg: rgba(15, 15, 45, 0.5);
    --glow: rgba(243, 186, 47, 0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

/* Header Styles */
header {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

/* Main Content Styles */
main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.content h3 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(243, 186, 47, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(243, 186, 47, 0.2);
    border-color: var(--primary);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Countdown Styles */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.countdown-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-item p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Notify Form */
.notify-form {
    margin-top: 2rem;
}

.notify-form h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.notify-form form {
    display: flex;
    gap: 0.5rem;
}

.notify-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(243, 186, 47, 0.3);
    background: rgba(15, 15, 45, 0.3);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.notify-form button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* 3D Illustration */
.illustration {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-container {
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(243, 186, 47, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    backface-visibility: visible;
}

.front {
    transform: translateZ(100px);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Arial" font-size="40" fill="%23F3BA2F">BNB</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.back {
    transform: translateZ(-100px) rotateY(180deg);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow) 0%, rgba(15, 15, 45, 0) 70%);
    z-index: -1;
    filter: blur(30px);
}

/* Footer Styles */
footer {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(243, 186, 47, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    100% {
        transform: rotateX(360deg) rotateY(720deg) rotateZ(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .illustration {
        order: -1;
        height: 300px;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .notify-form form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .content h3 {
        font-size: 2rem;
    }
} 