:root {
            --primary-color: #ff6b35;
            --secondary-color: #00e5ff;
            --accent-color: #ff4081;
            --dark-color: #0a0a1a;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0f0f23;
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.9)), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .btn-secondary {
            background: linear-gradient(45deg, var(--secondary-color), #00b8d4);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--secondary-color);
        }
        .content-card {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .highlight-text {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .game-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .feature-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .tag {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }
        .tag:hover {
            background: rgba(255, 107, 53, 0.4);
            transform: translateY(-2px);
        }
        .game-stat {
            text-align: center;
            padding: 20px;
            background: rgba(40, 40, 80, 0.5);
            border-radius: 10px;
            margin: 10px 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: #b0b0b0;
        }
        footer {
            background: rgba(10, 10, 26, 0.9);
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            color: #888;
            font-size: 0.9rem;
        }
        .daman-highlight {
            color: var(--accent-color);
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
