/* Общие стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-purple: #a855f7;
    --neon-purple-bright: #c084fc;
    --neon-purple-dark: #7c3aed;
    --neon-pink: #ec4899;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Анимированный фиолетовый неоновый фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    z-index: -2;
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Эффект частиц */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(192, 132, 252, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(236, 72, 153, 0.2), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
    animation: particleMove 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
    }
    100% {
        background-position: 100% 100%, 0% 100%, 50% 50%, 100% 0%, 0% 0%;
    }
}

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

/* Навигационное меню */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-purple);
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple),
        0 0 30px var(--neon-purple);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.nav-link:hover::after {
    width: 100%;
}

/* Гамбургер меню */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Главная секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--neon-purple);
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple),
        0 0 30px var(--neon-purple),
        0 0 40px var(--neon-purple);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-purple),
            0 0 20px var(--neon-purple),
            0 0 30px var(--neon-purple),
            0 0 40px var(--neon-purple);
    }
    50% {
        text-shadow: 
            0 0 20px var(--neon-purple),
            0 0 30px var(--neon-purple),
            0 0 40px var(--neon-purple),
            0 0 50px var(--neon-purple),
            0 0 60px var(--neon-purple-bright);
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 1rem;
}

.stream-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.stream-link.stream-link-secondary {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
    border-color: var(--neon-pink);
}

.stream-link.stream-link-secondary:hover {
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.7);
    border-color: var(--neon-pink);
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Секции */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-purple);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple);
    letter-spacing: 3px;
}

/* Секция промокода */
.promo-section {
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.promo-card {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.3),
        inset 0 0 30px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
}

.promo-code-box {
    margin-top: 2rem;
}

.promo-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.promo-text-small {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.promo-info {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.promo-code {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-purple);
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple),
        0 0 30px var(--neon-purple);
    letter-spacing: 5px;
    padding: 1.5rem;
    border: 2px solid var(--neon-purple);
    border-radius: 15px;
    background: rgba(168, 85, 247, 0.1);
    margin: 1.5rem 0;
    display: inline-block;
    animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(168, 85, 247, 0.5),
            inset 0 0 20px rgba(168, 85, 247, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(168, 85, 247, 0.8),
            inset 0 0 30px rgba(168, 85, 247, 0.2);
    }
}

.promo-bonus {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.highlight {
    color: var(--neon-purple-bright);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Секция проектов */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 10px 40px rgba(168, 85, 247, 0.4),
        0 0 30px rgba(168, 85, 247, 0.3);
    border-color: var(--neon-purple-bright);
}

.project-card.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.project-card.featured:hover {
    box-shadow: 
        0 10px 40px rgba(236, 72, 153, 0.4),
        0 0 30px rgba(236, 72, 153, 0.3);
}

.project-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-purple);
    position: relative;
    z-index: 1;
}

.project-card.featured .project-name {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.project-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.bonus-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    position: relative;
    z-index: 1;
}

.bonus-info p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.project-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-dark) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.project-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, var(--neon-purple-bright) 0%, var(--neon-purple) 100%);
}

.project-card.featured .project-link {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.project-card.featured .project-link:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

/* Секция бонусов */
.bonuses-section {
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

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

.bonus-item {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    border-color: var(--neon-purple-bright);
}

.bonus-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-purple);
}

.bonus-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.bonus-item strong {
    color: var(--neon-purple-bright);
    text-shadow: 0 0 5px var(--neon-purple);
}

/* Секция стримов */
.streams-section {
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.stream-card {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.3),
        inset 0 0 30px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(168, 85, 247, 0.4),
        inset 0 0 30px rgba(168, 85, 247, 0.15);
    border-color: var(--neon-purple-bright);
}

.stream-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple);
}

.stream-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-purple-dark) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
    border: 2px solid var(--neon-purple);
}

.stream-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.7);
    background: linear-gradient(135deg, var(--neon-purple-bright) 0%, var(--neon-purple) 100%);
    border-color: var(--neon-purple-bright);
}

.stream-icon {
    font-size: 1.5rem;
    animation: streamPulse 2s ease-in-out infinite;
}

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

/* Футер */
.footer {
    background: rgba(5, 5, 8, 0.9);
    border-top: 2px solid var(--neon-purple);
    padding: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(168, 85, 247, 0.3);
        padding: 2rem 0;
        border-top: 2px solid var(--neon-purple);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .promo-code {
        font-size: 2rem;
        padding: 1rem;
    }

    .promo-text {
        font-size: 1.1rem;
    }

    .promo-info {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .stream-card {
        padding: 2rem;
    }

    .stream-title {
        font-size: 1.5rem;
    }

    .stream-description {
        font-size: 1rem;
    }

    .stream-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }

    .promo-code {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .promo-text {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .stream-card {
        padding: 1.5rem;
    }

    .stream-title {
        font-size: 1.3rem;
    }

    .stream-link {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Выделение текста */
::selection {
    background: var(--neon-purple);
    color: var(--text-light);
}
