:root {
            --primary-color: #ff6b00;
            --secondary-color: #2d3748;
            --accent-color: #e53e3e;
            --text-light: #f8f9fa;
            --bg-dark: #1a202c;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff6b00, #e53e3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            border-bottom: 2px solid var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }
        .content-card {
            background: rgba(45, 55, 72, 0.8);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,107,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,107,0,0.2);
        }
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            width: 100%;
            height: auto;
            margin: 1.5rem 0;
            border: 2px solid var(--primary-color);
        }
        .table-custom {
            background: rgba(26, 32, 44, 0.8);
            border-radius: 10px;
            overflow: hidden;
        }
        .table-custom th {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        footer {
            background: var(--bg-dark);
            border-top: 3px solid var(--primary-color);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-card {
                padding: 1.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
