@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --burgundy: #800020;
    --burgundy-light: #A52A2A;
    --burgundy-dark: #660000;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    --gradient-burgundy: linear-gradient(135deg, #800020 0%, #A52A2A 50%, #660000 100%);
    --gradient-premium: linear-gradient(135deg, #800020, #D4AF37, #A52A2A);
    --gradient-bg: radial-gradient(circle at 20% 30%, rgba(128,0,32,0.15) 0%, rgba(10,10,10,1) 100%);
    --shadow-gold: 0 0 20px rgba(212,175,55,0.3);
    --shadow-burgundy: 0 0 20px rgba(128,0,32,0.5);
    --shadow-glow: 0 0 30px rgba(212,175,55,0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    pointer-events: none;
    z-index: -2;
}

/* Анимированные частицы */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-primary), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Контейнер */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
    z-index: 1;
}

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
    transition: var(--transition-smooth);
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.8));
    transform: scale(1.05);
}

/* Навигация */
.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 12px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 16px;
        padding: 8px 16px;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--gold-light);
}

/* Премиум кнопки */
.btn-premium {
    background: linear-gradient(135deg, #800020, #D4AF37, #A52A2A);
    background-size: 200% 200%;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn-premium {
        padding: 12px 32px;
        font-size: 16px;
    }
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid var(--gold-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn-outline-premium {
        padding: 10px 28px;
        font-size: 16px;
    }
}

.btn-outline-premium:hover {
    background: linear-gradient(135deg, #800020, #D4AF37);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}

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

/* Hero секция */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    min-height: auto;
}

@media (min-width: 992px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        min-height: 70vh;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 64px;
    }
}

.hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 18px;
    }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 32px;
    }
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Колесо */
.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wheel-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wheel-wrapper {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 992px) {
    .wheel-wrapper {
        width: 400px;
        height: 400px;
    }
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 5s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: 0 0 30px rgba(212,175,55,0.5), inset 0 0 20px rgba(0,0,0,0.3);
    background: conic-gradient(
        from 0deg,
        #800020 0deg 36deg,
        #D4AF37 36deg 72deg,
        #A52A2A 72deg 108deg,
        #B8860B 108deg 144deg,
        #800020 144deg 180deg,
        #D4AF37 180deg 216deg,
        #660000 216deg 252deg,
        #D4AF37 252deg 288deg,
        #800020 288deg 324deg,
        #FFD700 324deg 360deg
    );
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 35px solid var(--gold-primary);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
    z-index: 20;
}

@media (min-width: 768px) {
    .wheel-pointer {
        top: -30px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 40px solid var(--gold-primary);
    }
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(212,175,55,0.8);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center::after {
    content: '★';
    font-size: 24px;
    color: #800020;
    font-weight: bold;
}

@media (min-width: 768px) {
    .wheel-center {
        width: 80px;
        height: 80px;
    }
    .wheel-center::after {
        font-size: 32px;
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(212,175,55,0.8); }
    50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 30px rgba(212,175,55,1); }
}

.spin-btn {
    margin-top: 30px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #800020, #D4AF37, #A52A2A);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

@media (min-width: 768px) {
    .spin-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}

/* Карточки розыгрышей */
.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-subtitle {
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.premium-card {
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(26,26,26,0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    transition: left 0.6s;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(128,0,32,0.3);
}

@media (min-width: 1024px) {
    .premium-card:hover {
        transform: translateY(-10px);
    }
}

.card-image {
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .card-image {
        height: 220px;
    }
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.premium-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #800020, #D4AF37);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .card-badge {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 12px;
    }
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-content {
        padding: 25px;
    }
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold-light);
}

@media (min-width: 768px) {
    .card-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.card-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-primary);
    margin: 10px 0;
}

@media (min-width: 768px) {
    .card-price {
        font-size: 28px;
        margin: 15px 0;
    }
}

.card-price span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .card-stats {
        margin: 15px 0;
        padding: 15px 0;
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 18px;
    }
}

.stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 12px;
    }
}

.timer {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 12px 0;
    color: var(--gold-light);
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .timer {
        font-size: 24px;
        margin: 15px 0;
        letter-spacing: 2px;
    }
}

.btn-glow {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #800020, #D4AF37, #A52A2A);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-glow {
        padding: 14px;
        font-size: 16px;
        margin-top: 15px;
    }
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.5);
}

/* Winner info card */
.winner-info-card {
    background: linear-gradient(135deg, rgba(128,0,32,0.15), rgba(212,175,55,0.1));
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 16px;
    padding: 12px 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.winner-info-card:hover {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(128,0,32,0.25), rgba(212,175,55,0.2));
}

.winner-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #800020, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.winner-info-content {
    flex: 1;
}

.winner-info-label {
    font-size: 11px;
    color: #D4AF37;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.winner-info-name {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    word-break: break-word;
}

.winner-info-ticket {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.completed-only .winner-info-icon {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}

.completed-only .winner-info-label {
    color: #95a5a6;
}

.completed-only .winner-info-name {
    color: #fff;
    font-size: 14px;
}

.btn-completed {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
    animation: none;
}

.btn-completed:hover {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.step-card {
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(26,26,26,0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(128,0,32,0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(128,0,32,0.3), rgba(212,175,55,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: #D4AF37;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.step-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

@media (max-width: 480px) {
    .step-card {
        padding: 20px 15px;
    }
    .step-icon {
        width: 60px;
        height: 60px;
    }
    .step-icon i {
        font-size: 28px;
    }
    .step-card h3 {
        font-size: 16px;
    }
    .step-card p {
        font-size: 12px;
    }
}

.timer-label {
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: -8px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 12px;
        margin-top: -10px;
    }
}

/* Футер */
.footer {
    margin-top: 80px;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.3);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .footer {
        margin-top: 100px;
        padding: 60px 0 30px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
}

.footer-section h3 {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.footer-section p {
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    font-size: 13px;
}

@media (min-width: 768px) {
    .footer-section p {
        font-size: 14px;
    }
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
    }
}

.social-link:hover {
    background: linear-gradient(135deg, #800020, #D4AF37);
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

@media (min-width: 768px) {
    .copyright {
        padding-top: 40px;
        margin-top: 40px;
        font-size: 14px;
    }
}

/* Модальное окно правил */
.modal-rules {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-rules.show {
    display: flex;
}

.modal-rules-content {
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid #D4AF37;
    border-radius: 28px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUpModal 0.4s ease;
}

@keyframes slideUpModal {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-rules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.modal-rules-header h2 {
    color: #FFD700;
    font-size: 24px;
    margin: 0;
}

.modal-rules-header h2 i {
    color: #800020;
    margin-right: 10px;
}

.modal-rules-close {
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-rules-close:hover {
    color: #D4AF37;
    transform: rotate(90deg);
}

.modal-rules-body {
    padding: 25px 30px;
    overflow-y: auto;
    flex: 1;
}

.rules-section {
    margin-bottom: 25px;
}

.rules-section:last-child {
    margin-bottom: 0;
}

.rules-section h3 {
    color: #D4AF37;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rules-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.rules-section ul {
    margin: 10px 0 0 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.rules-section li {
    margin: 5px 0;
}

.modal-rules-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(212,175,55,0.3);
    text-align: center;
}

.btn-modal-close {
    background: linear-gradient(135deg, #800020, #D4AF37);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modal-close:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* Секция шеринга */
.share-section {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(26,26,26,0.95));
    border-radius: 32px;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.3);
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    backdrop-filter: blur(5px);
}

.share-btn i {
    font-size: 20px;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.telegram {
    background: linear-gradient(135deg, #2aabee, #229ed9);
    color: #fff;
}
.share-btn.telegram:hover {
    box-shadow: 0 5px 20px rgba(42,171,238,0.4);
}

.share-btn.vk {
    background: linear-gradient(135deg, #4c75a3, #2a4a6e);
    color: #fff;
}
.share-btn.vk:hover {
    box-shadow: 0 5px 20px rgba(76,117,163,0.4);
}

.share-btn.email {
    background: linear-gradient(135deg, #800020, #D4AF37);
    color: #fff;
}
.share-btn.email:hover {
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.share-btn.copy {
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    color: #fff;
}
.share-btn.copy:hover {
    box-shadow: 0 5px 20px rgba(44,62,80,0.4);
}

.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #800020, #D4AF37);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Адаптивные отступы */
@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
    }
    
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .share-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .share-btn i {
        font-size: 16px;
    }
    .copy-notification {
        white-space: nowrap;
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px 15px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}