/* BC.Game - Professional SEO-Optimized Bilingual Website */

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

:root {
    --primary-dark: #1A1D1F;
    --secondary-dark: #232629;
    --accent-teal: #00E701;
    --primary-green: #00E701;
    --secondary-green: #2FED8D;
    --gold-accent: #FFC800;
    --button-dark: #2D3135;
    --text-white: #FFFFFF;
    --text-gray: #9AA4B2;
    --border-color: #2D3135;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', -apple-system, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: var(--secondary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* Navigation Links - Brand Colors */
.nav-menu a,
.nav-link {
    color: #9AA4B2 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 15px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-link:hover,
.nav-link.active {
    color: #00E701 !important;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00E701;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher - Brand Colors */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: #9AA4B2 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: #00E701 !important;
    background: rgba(0, 231, 1, 0.1);
}

.lang-link.active {
    color: #00E701 !important;
    background: rgba(0, 231, 1, 0.15);
    font-weight: 700;
}

.lang-divider {
    color: #2D3135;
    font-size: 14px;
}

/* Old Language Switcher (for compatibility) */
.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: var(--button-dark);
    color: var(--text-white);
    border: 1px solid var(--primary-green);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-green);
    color: #000000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-green);
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(0, 231, 1, 0.4);
}

.btn-primary:hover {
    background: #00C700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 231, 1, 0.6);
}

.btn-secondary {
    background-color: var(--button-dark);
    color: var(--text-white) !important;
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: #000000 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-content {
    animation: slideInUp 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-white);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-white);
}

.section-title .highlight {
    color: var(--primary-green);
}

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

.feature-card {
    background: var(--secondary-dark);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 231, 1, 0.25);
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.content-text h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: var(--primary-green);
}

.content-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

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

.game-card {
    background: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.game-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    padding: 50px 0 25px;
    border-top: 3px solid var(--primary-green);
}

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

.footer-section h3 {
    color: #00E701 !important;
    font-size: 19px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #00E701 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2FED8D !important;
    text-decoration: none;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 231, 1, 0.15);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-actions {
        flex-direction: column;
        gap: 15px;
    }

    .language-switcher {
        order: -1;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* VIP and Premium Styles */
.vip-badge,
.gold-text {
    color: var(--gold-accent);
}

.vip-card {
    border: 2px solid var(--gold-accent) !important;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, rgba(255, 200, 0, 0.05) 100%);
}

.vip-card:hover {
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.3) !important;
}

.bonus-highlight {
    color: var(--primary-green);
    font-weight: 700;
}

.crypto-icon {
    color: var(--secondary-green);
}

/* Hidden class for language switching */
.hidden {
    display: none !important;
}