/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand Colors */
:root {
    --brand-primary: #1F674E;      /* Dark Blue */
    --brand-secondary: #FCFC1D;    /* Dark Gray */
    --brand-accent: #e53e3e;       /* Red */
    --brand-gold: #FF934F;         /* Gold */
    --brand-light: #f7fafc;        /* Light Gray */
    --brand-white: #ffffff;
    --brand-gradient: linear-gradient(135deg, #1F674E, #d0d00f);
    --brand-gradient-accent: linear-gradient(135deg, #e53e3e, #d69e2e);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #f9fafb;
    color: #1F674E;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

.text-gradient {
    background: var(--brand-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    text-align: center;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(26, 54, 93, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(26, 54, 93, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}
.logo-image1 {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image1:hover {
    transform: scale(1.05);
}


.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.floating-menu-widget {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--brand-gradient);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.floating-menu-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-menu-widget .menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.floating-menu-widget .menu-icon span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    margin: 2px 0;
    transition: all 0.3s ease;
}


.floating-menu-widget.expanded .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.floating-menu-widget.expanded .menu-icon span:nth-child(2) {
    opacity: 0;
}

.floating-menu-widget.expanded .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.floating-menu-panel {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    min-width: 200px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-menu-panel.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-menu-panel .menu-item {
    display: block;
    padding: 12px 16px;
    color: var(--brand-primary);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.floating-menu-panel .menu-item:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    transform: translateX(5px);
}

.floating-menu-panel .menu-item:last-child {
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: var(--brand-gradient);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight {
    color: var(--brand-gold);
    display: block;
}

.hero-description {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    gap: 24px;
}

.mobile-brand-link {
    display: none;
    margin-top: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mobile-brand-link:hover {
    transform: scale(1.05);
}

.mobile-brand-link img {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-dot {
    width: 12px;
    height: 12px;
    background: var(--brand-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--brand-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.bonus-header h3 {
    color: var(--brand-gold);
    margin-bottom: 8px;
}

.bonus-header p {
    color: #dbeafe;
    margin-bottom: 16px;
}

.bonus-percentage {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.bonus-max {
    font-size: 18px;
    color: #dbeafe;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero-sports {
    background: var(--brand-gradient);
}

.page-hero-casino {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.page-hero .hero-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.page-hero .hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.feature-icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.feature-icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.feature-icon-yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.feature-icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.feature-icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-dark {
    background: #111827;
    color: white;
}

.cta-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-dark .cta-card {
    background: #1f2937;
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-dark .cta-card p {
    color: #d1d5db;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.sport-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sport-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.sport-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 16px;
}

.sport-icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.sport-icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.sport-icon-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.sport-icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.sport-icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sport-icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

.sport-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.sport-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Live Matches */
.live-matches {
    padding: 80px 0;
    background: white;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.match-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 32px;
}

.team {
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
}

.team-label {
    font-size: 14px;
    color: #6b7280;
}

.match-score {
    text-align: center;
}

.score {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
}

.time {
    font-size: 14px;
    color: #6b7280;
}

.match-odds {
    display: flex;
    gap: 16px;
}

.odds-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.odds-home, .odds-away {
    background: #dbeafe;
    color: #1e40af;
}

.odds-draw {
    background: #f3f4f6;
    color: #374151;
}

.odds-btn:hover {
    transform: scale(1.05);
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.game-category-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 16px;
}

.game-icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.game-icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.game-icon-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.game-icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.game-icon-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.game-icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.game-category-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.game-category-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Featured Games */
.featured-games {
    padding: 80px 0;
    background: white;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.featured-game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    font-size: 48px;
}

.game-rating {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fbbf24;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.game-info {
    padding: 16px;
}

.game-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.game-info p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Providers Section */
.providers-section {
    padding: 80px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.provider-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: scale(1.05);
}

.provider-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin: 0 auto 12px;
}

.provider-card p {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* Live Casino */
.live-casino {
    padding: 80px 0;
    background: #111827;
    color: white;
}

.live-casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.live-casino h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.live-casino p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.live-casino-features {
    list-style: none;
    margin-bottom: 32px;
}

.live-casino-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #d1d5db;
}

.live-casino-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
}

.live-casino-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.live-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.live-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.live-subtitle {
    color: #c4b5fd;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}



.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-licensed {
    background: #10b981;
}

.badge-secure {
    background: #3b82f6;
}

.badge-icon::before {
    content: '✓';
    color: white;
    font-weight: bold;
}

.badge span {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    .floating-menu-widget {
        display: block;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .nav-buttons .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .nav-content {
        gap: 16px;
    }
    

    
    .logo-image {
        width: 52px;
        height: 52px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .mobile-brand-link {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .match-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .match-teams {
        gap: 16px;
    }
    
    .match-odds {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-games-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .live-casino-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card,
    .sport-card,
    .game-category-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 32px 24px;
    }
    
    .nav-buttons {
        gap: 6px;
    }
    
    .nav-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .nav-content {
        gap: 12px;
    }
    

    
    .logo-image {
        width: 48px;
        height: 48px;
    }
    .floating-menu-widget {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-menu-panel {
        bottom: 75px;
        left: 15px;
        min-width: 180px;
    }
    
    .mobile-brand-link img {
        width: 250px;
        height: 250px;
    }
}

/* ========================================
   New Page Styles
   ======================================== */

.live-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.live-event-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient-accent);
}

.live-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.live-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.live-indicator {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-event-teams {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.live-event-time {
    color: #6b7280;
    font-size: 14px;
}

.live-features-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 60px 0;
    margin: 60px 0;
}

.live-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.live-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.live-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.live-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.live-feature-description {
    color: #6b7280;
    line-height: 1.6;
}


.welcome-bonus-section {
    background: linear-gradient(135deg, var(--brand-primary), #2d3748);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 252, 29, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.welcome-bonus-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bonus-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--brand-secondary);
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promotion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.promotion-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.promotion-content {
    padding: 24px;
}

.promotion-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.promotion-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promotion-validity {
    color: #9ca3af;
    font-size: 14px;
    font-style: italic;
}


.support-methods-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.support-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-method-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.support-method-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.support-method-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.support-method-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-method-time {
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 14px;
}

.help-topics-section {
    margin: 60px 0;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.help-topic-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.help-topic-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.help-topic-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.help-topic-icon {
    margin-right: 12px;
    font-size: 20px;
}

.help-topic-description {
    color: #6b7280;
    line-height: 1.6;
}


.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.result-sport {
    background: var(--brand-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.result-date {
    color: #6b7280;
    font-size: 14px;
}

.result-teams {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
    text-align: center;
}

.result-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.team-score {
    text-align: center;
}

.score-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-accent);
}

.team-name {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.result-status {
    text-align: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.result-status.finished {
    background: #10b981;
    color: white;
}

.result-status.live {
    background: #ef4444;
    color: white;
    animation: pulse 2s infinite;
}


.help-topics-section {
    margin: 60px 0;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.help-topic-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.help-topic-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.help-topic-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.help-topic-icon {
    margin-right: 12px;
    font-size: 20px;
}

.help-topic-description {
    color: #6b7280;
    line-height: 1.6;
}

.help-topic-link {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    transition: color 0.3s ease;
}

.help-topic-link:hover {
    color: var(--brand-primary);
}


.terms-content-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--brand-primary);
}

.terms-section h2 {
    color: var(--brand-primary);
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.terms-section h2::before {
    content: '📋';
    margin-right: 12px;
    font-size: 20px;
}

.terms-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.terms-section li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-footer {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    text-align: center;
    border: 2px dashed var(--brand-primary);
}

.terms-footer p {
    color: var(--brand-primary);
    font-weight: 500;
    margin-bottom: 8px;
}


.privacy-content-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--brand-primary);
}

.privacy-section h2 {
    color: var(--brand-primary);
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: '🔒';
    margin-right: 12px;
    font-size: 20px;
}

.privacy-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-section li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-footer {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    text-align: center;
    border: 2px dashed var(--brand-primary);
}

.privacy-footer p {
    color: var(--brand-primary);
    font-weight: 500;
    margin-bottom: 8px;
}


.responsible-tools-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tool-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.tool-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    margin-bottom: 24px;
}

.tool-features li {
    color: #4b5563;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.tool-features li:last-child {
    border-bottom: none;
}

.warning-signs-section {
    margin: 60px 0;
}

.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.warning-sign-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #f59e0b;
}

.warning-sign-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.warning-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.warning-sign-card h3 {
    color: #d97706;
    font-size: 18px;
    margin-bottom: 12px;
}

.warning-sign-card ul {
    margin-left: 20px;
}

.warning-sign-card li {
    color: #4b5563;
    margin-bottom: 6px;
    line-height: 1.5;
}

.help-resources-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.resource-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
    text-align: left;
}

.resource-card li {
    color: #4b5563;
    margin-bottom: 6px;
    padding: 4px 0;
}

.commitment-section {
    background: linear-gradient(135deg, var(--brand-primary), #2d3748);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
    text-align: center;
}

.commitment-content h2 {
    color: white;
    margin-bottom: 20px;
}

.commitment-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.commitment-content ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
}

.commitment-content li {
    margin-bottom: 8px;
    padding: 8px 0;
}

.commitment-content strong {
    color: var(--brand-secondary);
}


.licenses-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.license-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient-accent);
}

.license-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.license-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.license-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.license-details p {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.5;
}

.license-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}

.license-status.active {
    background: #10b981;
    color: white;
}

.compliance-section {
    margin: 60px 0;
}

.compliance-content {
    max-width: 800px;
    margin: 0 auto;
}

.compliance-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--brand-primary);
}

.compliance-item h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.compliance-item p {
    color: #374151;
    line-height: 1.7;
}

.authorities-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.authorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.authority-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.authority-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.authority-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.authority-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.authority-card ul {
    margin-left: 20px;
}

.authority-card li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.5;
}

.measures-section {
    margin: 60px 0;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.measure-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.measure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.measure-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.measure-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.measure-card p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: var(--brand-primary);
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.5;
}


.complaint-process-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient-accent);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.step-icon {
    font-size: 48px;
    margin: 20px 0 16px;
    display: block;
}

.step-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    text-align: left;
}

.step-details li {
    color: #4b5563;
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.step-details li:last-child {
    border-bottom: none;
}

.categories-section {
    margin: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.category-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.category-card h3 {
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.category-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.category-card li {
    color: #4b5563;
    margin-bottom: 6px;
    line-height: 1.5;
}

.response-time {
    color: var(--brand-accent);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 8px 16px;
    background: #fef2f2;
    border-radius: 20px;
    border: 1px solid #fecaca;
}

.complaint-form-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.complaint-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(31, 103, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--brand-accent);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    margin-top: 16px;
}

.channels-section {
    margin: 60px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.channel-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.channel-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.channel-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.channel-card p {
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.6;
}

.channel-card .response-time {
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.timeline-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brand-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid var(--brand-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: calc(50% - 40px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .live-events-grid,
    .promotions-grid,
    .support-methods-grid,
    .help-topics-grid,
    .results-grid,
    .tools-grid,
    .warning-signs-grid,
    .resources-grid,
    .licenses-grid,
    .authorities-grid,
    .measures-grid,
    .process-steps,
    .categories-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .welcome-bonus-section,
    .commitment-section {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .bonus-amount {
        font-size: 48px;
    }
    
    .terms-content,
    .privacy-content,
    .compliance-content,
    .contact-content {
        padding: 0 20px;
    }
    
    .complaint-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .live-event-card,
    .promotion-card,
    .support-method-card,
    .help-topic-card,
    .result-card,
    .tool-card,
    .warning-sign-card,
    .resource-card,
    .license-card,
    .authority-card,
    .measure-card,
    .step-card,
    .category-card,
    .channel-card {
        padding: 20px;
    }
    
    .terms-section,
    .privacy-section,
    .compliance-item {
        padding: 20px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* ========================================
   新增页面专用样式 - 联系我们、聊天、FAQ、教程
   ======================================== */


.contact-methods-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient-accent);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.contact-method-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-method-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-method-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-details p {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: var(--brand-primary);
}

.contact-form-section {
    margin: 60px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(31, 103, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--brand-accent);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.office-info-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.office-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.office-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.office-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.office-details,
.office-hours {
    margin-bottom: 20px;
}

.office-details p,
.office-hours p {
    color: #4b5563;
    margin-bottom: 6px;
    line-height: 1.5;
}

.office-details strong,
.office-hours strong {
    color: var(--brand-primary);
}

.faq-preview-section {
    margin: 60px 0;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-preview-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.faq-preview-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-preview-item h3 {
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-preview-item p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.faq-link {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: var(--brand-primary);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 18px;
}


.chat-interface-section {
    margin: 60px 0;
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, var(--brand-primary), #2d3748);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #10b981;
}

.chat-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.chat-info p {
    font-size: 14px;
    opacity: 0.9;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 24px;
    background: #f8fafc;
}

.message {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.message.user {
    flex-direction: row-reverse;
}

.message.user .message-content {
    background: var(--brand-primary);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.message.agent .message-content,
.message.system .message-content {
    background: white;
    color: #374151;
    border-radius: 18px 18px 18px 4px;
    border: 1px solid #e5e7eb;
}

.message-content {
    padding: 12px 16px;
    max-width: 70%;
    position: relative;
}

.message-content p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.message-time {
    font-size: 12px;
    opacity: 0.7;
    display: block;
}

.message-avatar {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
}

.chat-input-area {
    padding: 24px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.quick-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: #f3f4f6;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: var(--brand-primary);
    color: white;
}

.input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.input-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-container input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(31, 103, 78, 0.1);
}

.send-btn {
    background: var(--brand-primary);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: var(--brand-accent);
    transform: scale(1.1);
}

.chat-features {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.feature-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.chat-features-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.chat-topics-section {
    margin: 60px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.topic-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.topic-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.topic-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.topic-card h3 {
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.topic-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.topic-card li {
    color: #4b5563;
    margin-bottom: 6px;
    line-height: 1.5;
}

.alternative-support-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-channel-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.channel-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.support-channel-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.support-channel-card p {
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.6;
}


.faq-search-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.search-box input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(31, 103, 78, 0.1);
}

.search-btn {
    background: var(--brand-primary);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--brand-accent);
    transform: scale(1.05);
}

.search-hint {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

.faq-categories-section {
    margin: 60px 0;
}

.categories-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.category-tab {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.category-tab.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.faq-content-section {
    margin: 60px 0;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.category-title {
    color: var(--brand-primary);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    color: var(--brand-primary);
    font-size: 18px;
    margin: 0;
}

.toggle-icon {
    font-size: 24px;
    color: var(--brand-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--brand-primary);
}

.contact-support-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.contact-support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-support-content h2 {
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.contact-support-content p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 18px;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.support-info {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: inline-block;
}

.support-info p {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 14px;
}

.support-info p:last-child {
    margin-bottom: 0;
}

.support-info strong {
    color: var(--brand-primary);
}


.tutorial-categories-section {
    margin: 60px 0;
}

.tutorial-content-section {
    margin: 60px 0;
}

.tutorial-category {
    display: none;
}

.tutorial-category.active {
    display: block;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tutorial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tutorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient-accent);
}

.tutorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.tutorial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tutorial-icon {
    font-size: 48px;
    margin-right: 16px;
}

.tutorial-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.difficulty {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.beginner {
    background: #10b981;
    color: white;
}

.difficulty.intermediate {
    background: #f59e0b;
    color: white;
}

.difficulty.advanced {
    background: #ef4444;
    color: white;
}

.duration {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.tutorial-card h4 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.tutorial-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tutorial-steps {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.tutorial-steps ol {
    margin-left: 20px;
}

.tutorial-steps li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.5;
}

.video-tutorials-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.section-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 18px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    font-size: 48px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.2);
}

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.video-info {
    padding: 24px;
}

.video-info h4 {
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.video-info p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.video-category {
    display: inline-block;
    background: #f3f4f6;
    color: var(--brand-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.interactive-learning-section {
    margin: 60px 0;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.learning-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.learning-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.learning-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.learning-card h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.learning-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learning-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.learning-stats span {
    background: #f3f4f6;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-methods-grid,
    .office-grid,
    .faq-preview-grid,
    .topics-grid,
    .support-channels-grid,
    .tutorial-grid,
    .video-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .categories-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .chat-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .chat-actions {
        justify-content: center;
    }
    
    .quick-actions {
        justify-content: center;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-method-card,
    .office-card,
    .faq-preview-item,
    .topic-card,
    .support-channel-card,
    .tutorial-card,
    .video-card,
    .learning-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .chat-messages {
        height: 300px;
        padding: 16px;
    }
    
    .chat-input-area {
        padding: 16px;
    }
    
    .tutorial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .tutorial-meta {
        align-items: flex-start;
    }
}
