:root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #FF8C00;
            --dark-color: #2F1B0C;
            --light-color: #F5F5DC;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #2F1B0C 0%, #8B4513 100%);
            color: #F5F5DC;
            line-height: 1.7;
        }
        .navbar {
            background: rgba(47, 27, 12, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--accent-color);
        }
        .logo-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #FF8C00, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-weight: bold;
            letter-spacing: 1px;
        }
        .nav-link {
            color: #F5F5DC !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1600x900') no-repeat center center;
            background-size: cover;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(47, 27, 12, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: var(--accent-color);
        }
        .content-section {
            background: rgba(245, 245, 220, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem 0;
            border: 1px solid rgba(210, 105, 30, 0.3);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-text {
            color: var(--accent-color);
            font-weight: 600;
        }
        .feature-box {
            background: rgba(139, 69, 19, 0.2);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            transform: translateX(10px);
            background: rgba(139, 69, 19, 0.3);
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
        }
        .icon-list {
            list-style: none;
            padding: 0;
        }
        .icon-list li {
            margin-bottom: 1rem;
            padding-left: 2.5rem;
            position: relative;
        }
        .icon-list li i {
            position: absolute;
            left: 0;
            top: 0.3rem;
            color: var(--accent-color);
            font-size: 1.3rem;
        }
        footer {
            background: var(--dark-color);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-color);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: var(--dark-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.show {
            opacity: 1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 2rem 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
