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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0f1e;
    color: #e8e9f0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Фоновые эффекты */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 30%, #1a2a3f 0%, #0a0f1e 80%);
}

/* Сетка (как в мобильных интерфейсах) */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Частицы (кристаллы/магия) */
.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.particle-1 { width: 300px; height: 300px; top: -100px; right: -100px; background: rgba(0, 180, 255, 0.1); }
.particle-2 { width: 400px; height: 400px; bottom: -150px; left: -150px; background: rgba(200, 155, 60, 0.1); animation-delay: -5s; }
.particle-3 { width: 200px; height: 200px; top: 40%; left: 20%; background: rgba(120, 80, 200, 0.1); animation-duration: 15s; }
.particle-4 { width: 150px; height: 150px; bottom: 20%; right: 15%; background: rgba(255, 100, 100, 0.1); animation-duration: 18s; animation-delay: -2s;}
.particle-5 { width: 250px; height: 250px; top: 10%; left: 70%; background: rgba(255, 215, 0, 0.1); filter: blur(60px);}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

/* Шапка и логотип */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-wild {
    color: #e8e9f0;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.logo-rift {
    color: #d4af37; /* Золотой */
    text-shadow: 0 0 15px #d4af37;
    margin-left: 5px;
}

.logo-portal {
    font-size: 16px;
    font-weight: 400;
    color: #aabbdd;
    margin-left: 10px;
    letter-spacing: 1px;
}

.version-badge {
    background: linear-gradient(145deg, #1e2a3a, #0f1a2a);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}

/* Основная секция */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 8vw, 64px);
    line-height: 1.2;
    text-transform: uppercase;
}

.line-one {
    display: block;
    color: #e8e9f0;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.line-two {
    display: block;
    color: #d4af37;
    text-shadow: 0 0 30px #d4af37, 0 0 10px #f0e68c;
    letter-spacing: 8px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divider-icon {
    font-size: 24px;
    color: #d4af37;
    animation: pulse 2s infinite;
}

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

.crystal-left, .crystal-right {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffffff, #d4af37, transparent);
}

.description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #b0c4de;
    background: rgba(10, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Таймер */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 20px #d4af37;
    line-height: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #d4af37;
    backdrop-filter: blur(4px);
    width: 100%;
    text-align: center;
}

.countdown-label {
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aabbdd;
}

/* Форма */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.email-input {
    padding: 15px 25px;
    width: 300px;
    border-radius: 50px;
    border: none;
    background: rgba(20, 30, 45, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid #3a4a6a;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.email-input::placeholder {
    color: #7f8fa6;
}

.notify-button {
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #0a0f1e;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #ffd700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.notify-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #d4af37;
    background: linear-gradient(145deg, #e6c300, #c67100);
}

.form-disclaimer {
    font-size: 12px;
    color: #6a7a9a;
}

/* Карточки особенностей */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(15, 25, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.7);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #d4af37);
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.feature-card p {
    color: #b0c4de;
    font-size: 15px;
}

/* Подвал */
footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #7f8fa6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 40, 60, 0.8);
    border: 1px solid #3a4a6a;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.social-link:hover {
    background: #d4af37;
    color: #0a0f1e;
    border-color: #d4af37;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        font-size: 22px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-number {
        font-size: 32px;
        padding: 5px 10px;
    }

    .description {
        font-size: 16px;
        padding: 15px;
    }

    .notify-form {
        flex-direction: column;
        align-items: center;
    }

    .email-input {
        width: 100%;
        max-width: 300px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
