:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e64;
            --accent-color: #ffd166;
            --text-dark: #2d3142;
            --text-light: #f7f7f7;
            --background-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--background-light);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 1.8rem;
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a759f 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,78,100,0.8), rgba(0,78,100,0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--secondary-color);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .image-caption {
            font-style: italic;
            text-align: center;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .gameplay-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
        }
        footer {
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 40px 0 20px;
        }
        .footer-heading {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .logo-text {
                font-size: 1.4rem;
            }
            .content-card {
                padding: 20px;
            }
        }
        .content-paragraph {
            margin-bottom: 1.5rem;
        }
        .key-feature {
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
        }
