:root {
    --primary: #4a7c59;
    --secondary: #121212;
    --text-light: #f8f8f8;
    --text-dark: #333333;
    --accent: #8b7355;
    --bg-dark: #0a0a0a;
    --glow: #4a7c59;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.devil {
    color: var(--primary);
}

.market {
    color: var(--text-light);
}

.io {
    color: var(--accent);
    font-size: 2.8rem;
}

.tagline {
    margin-bottom: 3rem;
}

.tagline h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Rajdhani', sans-serif;
}

.description {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.description p:first-child {
    margin-bottom: 0.5rem;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Rajdhani', sans-serif;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.notify-container {
    margin-bottom: 3rem;
}

.notify-container h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px 0 0 4px;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.email-form input:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.email-form button {
    padding: 12px 25px;
    border: none;
    background: linear-gradient(135deg, var(--primary), #ff7b7b);
    color: white;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.email-form button:hover {
    background: linear-gradient(135deg, #ff5252, var(--primary));
    transform: translateY(-2px);
}

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

.social-icon {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s;
    opacity: 0.7;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 1;
    color: var(--primary);
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(
        circle at center,
        rgba(74, 124, 89, 0.05) 0%,
        rgba(74, 124, 89, 0.02) 20%,
        rgba(74, 124, 89, 0) 70%
    );
    z-index: 1;
    opacity: 0.7;
}

.code-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
    overflow: hidden;
}

footer {
    margin-top: auto;
    font-size: 0.9rem;
    opacity: 0.5;
    text-align: center;
    width: 100%;
    padding: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        text-shadow: 0 0 5px rgba(74, 124, 89, 0.3),
                    0 0 10px rgba(74, 124, 89, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(74, 124, 89, 0.5),
                    0 0 30px rgba(74, 124, 89, 0.4);
    }
    100% {
        text-shadow: 0 0 5px rgba(74, 124, 89, 0.3),
                    0 0 10px rgba(74, 124, 89, 0.3);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline h1 {
        font-size: 1.5rem;
    }
    
    .tagline h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .email-form button {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline h1 {
        font-size: 1.2rem;
    }
    
    .tagline h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 1rem;
    }
}