body {
    background-color: #141416;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coming-soon-container {
    background: rgba(27, 27, 30, 0.95);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 84, 84, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 84, 84, 0.1);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 30px rgba(255, 84, 84, 0.3); }
    100% { box-shadow: 0 0 50px rgba(255, 84, 84, 0.5); }
}

.logo {
    margin-bottom: 30px;
    position: relative;
}

.logo a {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo span {
    color: white;
}

.logo a > span:first-child {
    color: #FF5454;
    animation: colorPulse 2s infinite;
}

@keyframes colorPulse {
    0% { color: #FF5454; }
    50% { color: #ff7676; }
    100% { color: #FF5454; }
}

.tagline {
    font-size: 1.2rem;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

#countdown {
    font-size: 3rem;
    font-weight: bold;
    margin: 30px 0;
    color: #FF5454;
    text-shadow: 0 0 20px rgba(255, 84, 84, 0.5);
    font-family: 'Proxima Nova', sans-serif;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.form-control {
    background: rgba(20, 20, 22, 0.8);
    border: 2px solid #2f191b;
    color: white;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(20, 20, 22, 0.9);
    border-color: #FF5454;
    color: white;
    box-shadow: 0 0 20px rgba(255, 84, 84, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 84, 84, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff8c8c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 84, 84, 0.4);
}

.alert-danger {
    background: rgba(255, 84, 84, 0.1);
    border: 1px solid rgba(255, 84, 84, 0.3);
    color: #ff9999;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(27, 27, 30, 0.7);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 84, 84, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 84, 84, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FF5454;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}