/* VBET CASINO - РОЗОВАЯ ТЕМА 2025 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF1493;
    --primary-dark: #DC1478;
    --secondary: #FF69B4;
    --accent: #FFB6C1;
    --dark: #1A0A1E;
    --darker: #0D0510;
    --light: #EAEAEA;
    --success: #06D6A0;
    --gradient: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    --gradient-alt: linear-gradient(135deg, #DC1478 0%, #FF1493 100%);
    --gradient-dark: linear-gradient(135deg, #1A0A1E 0%, #0D0510 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== HEADER ==================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-navigation {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    margin-top: 80px;
    padding-top: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 105, 180, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(234, 234, 234, 0.7);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(234, 234, 234, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2);
}

.hero-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 900;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 100px 40px 120px;
    margin-top: 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(234, 234, 234, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
}

.feature-box:hover {
    background: rgba(255, 20, 147, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(234, 234, 234, 0.7);
}

/* ==================== GAMES SECTION ==================== */
.games-section {
    padding: 100px 40px 120px;
    margin-top: 40px;
    background: var(--dark);
}

.games-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.game-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.game-info {
    padding: 20px;
}

.game-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-category {
    font-size: 14px;
    color: rgba(234, 234, 234, 0.6);
    margin-bottom: 12px;
}

.game-info .btn {
    width: 100%;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 100px 40px 120px;
    margin-top: 40px;
    position: relative;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: white;
    color: var(--primary);
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(234, 234, 234, 0.6);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-section-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(234, 234, 234, 0.6);
    font-size: 15px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(234, 234, 234, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.age-badge {
    padding: 8px 16px;
    background: #dc2626;
    border-radius: 8px;
    font-weight: 900;
    font-size: 16px;
}

/* ==================== MOBILE MENU ==================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    z-index: 999;
    transition: left 0.4s ease;
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-navigation {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: var(--light);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
    padding-left: 30px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding: 0 20px 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    padding-top: 20px;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.main-navigation.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    z-index: 999;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .main-navigation {
        display: none;
    }

    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .logo-section {
        gap: 8px;
    }

    .logo-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
        word-wrap: break-word;
    }

    .cta-title {
        font-size: 32px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }

    .logo-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 14px 16px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}
