/* ==================== VBET INFO - MODERN REDESIGN ==================== */

/* CSS Variables */
:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F48FB1;
    --secondary: #9C27B0;
    --accent: #FF4081;
    --dark: #0A0E27;
    --dark-card: #1A1F3A;
    --dark-secondary: #2A2F4A;
    --light: #FFFFFF;
    --text-primary: #EAEAEA;
    --text-secondary: #B0B0B0;
    --text-muted: #6B7280;
    --border: rgba(233, 30, 99, 0.1);
    --gradient: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    --gradient-dark: linear-gradient(135deg, #1A1F3A 0%, #0A0E27 100%);
    --shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 10px 40px rgba(233, 30, 99, 0.25);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Sora', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
}

.logo-badge {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
}

.logo-text .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    opacity: 0.8;
    position: relative;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.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(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 1000;
    transition: left 0.4s ease;
    padding-top: 90px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s;
}

.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: 15px;
    padding: 30px 20px;
}

.mobile-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Hero Section - New Design */
.hero-section {
    position: relative;
    padding: 180px 40px 120px;
    text-align: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(233, 30, 99, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-light);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    padding: 80px 40px;
    background: var(--dark-card);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.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: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Cards Section */
.cards-section {
    padding: 100px 40px;
    background: var(--dark);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.card-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.card-link:hover {
    gap: 12px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 40px;
    background: var(--dark-card);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient);
    border-radius: 32px;
    padding: 60px 40px;
}

.newsletter-title {
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    background: white;
    color: var(--dark);
}

.newsletter-button {
    padding: 16px 32px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

/* Articles Grid */
.articles-section {
    padding: 100px 40px;
    background: var(--dark);
}

.articles-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.article-image {
    width: 100%;
    height: 250px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.article-content {
    padding: 32px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border);
    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: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    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;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    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 var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.age-badge {
    padding: 6px 16px;
    background: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    color: white;
}

/* Content Pages Styles */
.content-section {
    padding: 80px 40px;
    background: var(--dark);
}

.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.content-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.content-card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.content-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.content-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(233, 30, 99, 0.05);
}

.content-card li:last-child {
    border-bottom: none;
}

.content-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* Static Pages Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.page-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-content ul, .page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--primary-light);
}

/* Contact Page Styles */
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 40px;
    background: var(--dark-card);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient);
    border-radius: 32px;
    padding: 80px 40px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: white;
    color: var(--primary);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-content .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 140px 20px 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-section {
        padding: 80px 20px;
    }
    
    .newsletter-container {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-content {
        padding: 60px 30px;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .cta-text {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .cta-content .btn {
        width: 100%;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-content {
        padding: 100px 20px 60px;
    }
    
    .page-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .page-content h2 {
        font-size: 26px;
    }
    
    .page-content h3 {
        font-size: 22px;
    }
    
    .page-content p, 
    .page-content li {
        font-size: 16px;
    }
    
    .content-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .newsletter-section {
        padding: 60px 15px;
    }
    
    .newsletter-container {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .newsletter-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .newsletter-input {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .newsletter-button {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .cta-section {
        padding: 60px 15px;
    }
    
    .cta-content {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-content .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .page-content h1 {
        font-size: 28px;
    }
    
    .page-content h2 {
        font-size: 22px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .content-card-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}
