:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        .logo-brand {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            text-shadow: 3px 3px 0px var(--secondary-color);
            letter-spacing: 2px;
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--secondary-color) 0%, #3730a3 100%);
            padding: 1rem 0;
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            padding: 0.5rem 1.5rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), url('https://via.placeholder.com/1600x900') center/cover;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        h1 {
            color: var(--secondary-color);
            font-weight: 800;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid var(--primary-color);
            padding-bottom: 0.5rem;
            font-size: 2.8rem;
        }
        h2 {
            color: var(--secondary-color);
            font-weight: 700;
            margin: 2.5rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin: 2rem 0 1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .game-feature {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 2rem;
            margin: 1.5rem 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .img-fluid {
            border-radius: 15px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        .key-point {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--primary-color);
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .copyright {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 2rem;
        }
        @media (max-width: 768px) {
            .logo-brand {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 3rem 0;
            }
            .content-section {
                padding: 2rem 1rem;
            }
        }
        .strategy-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            margin: 1.5rem 0;
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary-color);
        }
        .strategy-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .strategy-header {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 700;
        }
        .strategy-body {
            padding: 1.5rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .character-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .character-img {
            height: 200px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-color);
        }
        .character-info {
            padding: 1.5rem;
        }
        .badge-custom {
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .table-custom {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .table-custom thead {
            background: var(--secondary-color);
            color: white;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--accent-color);
            color: white;
        }
