:root {
            --primary-gold: #FFD700;
            --secondary-orange: #FF8C00;
            --accent-red: #DC143C;
            --dark-bg: #1a1a1a;
            --text-light: #f8f9fa;
        }
        body {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }
        h1, h2, h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 2px solid var(--primary-gold);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--secondary-orange);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-orange);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(255, 215, 0, 0.2) 100%);
            padding: 0 5px;
            border-radius: 3px;
            font-weight: bold;
        }
        .feature-icon {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-right: 10px;
        }
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        .image-container:hover {
            transform: scale(1.02);
        }
        .image-caption {
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            font-style: italic;
            text-align: center;
        }
        .rule-item {
            background: rgba(255, 255, 255, 0.08);
            border-left: 4px solid var(--accent-red);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 0 8px 8px 0;
        }
        .strategy-card {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .strategy-card:hover {
            background: rgba(255, 215, 0, 0.15);
            transform: translateX(5px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-gold);
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 2px solid var(--primary-gold);
            padding: 30px 0;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px;
            }
        }
