* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', sans-serif;
        }
        :root {
            --primary: #FF7000;
            --secondary: #00A36C;
            --accent: #FFD700;
            --dark: #003366;
            --light: #F8F9FA;
            --gray: #6C757D;
            --white: #FFFFFF;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark);
            color: var(--white);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .btn-group {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--white);
        }
        .btn-download:hover {
            background-color: #E66000;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--white);
        }
        .btn-login:hover {
            background-color: #008A5B;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://via.placeholder.com/1920x1080?text=Soul+Explorer+Bharat+Edition+Hero+Image') center/cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        .hero .btn-group {
            justify-content: center;
        }
        .content-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 60px;
        }
        .sidebar {
            width: 300px;
            flex-shrink: 0;
        }
        .info-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        .info-card h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        .info-list {
            list-style: none;
        }
        .info-list li {
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
        }
        .info-list span {
            font-weight: 600;
            color: var(--primary);
        }
        .rating-card {
            text-align: center;
            padding: 20px;
        }
        .rating {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .rating-text {
            font-size: 18px;
            color: var(--dark);
            font-weight: 500;
        }
        .main-content {
            flex: 1;
        }
        .section {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 30px;
        }
        .section h2 {
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 25px;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        .section h3 {
            font-size: 24px;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        .section p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .section strong {
            color: var(--primary);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-item {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        .feature-item h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-item h4 emoji {
            font-size: 24px;
        }
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .location-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .location-card:hover {
            transform: translateY(-5px);
        }
        .location-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .location-info {
            padding: 20px;
        }
        .location-info h4 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .character-card {
            text-align: center;
            padding: 20px;
            background-color: var(--light);
            border-radius: 10px;
        }
        .character-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid var(--accent);
        }
        .character-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
        }
        .character-role {
            color: var(--gray);
            font-style: italic;
        }
        .categories-tags {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 30px;
        }
        .categories-tags h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 20px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .tag {
            padding: 8px 15px;
            background-color: var(--light);
            color: var(--dark);
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .category {
            padding: 8px 15px;
            background-color: var(--light);
            color: var(--dark);
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .category:hover {
            background-color: var(--secondary);
            color: var(--white);
        }
        .recommendation {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 30px;
            border-top: 5px solid var(--accent);
        }
        .recommendation h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .recommendation h3 emoji {
            font-size: 28px;
        }
        .recommendation p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--primary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-contact p {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: var(--gray);
        }
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 36px;
            }
            .hero p {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .btn-group {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 28px;
            }
            .section h2 {
                font-size: 26px;
            }
            .section h3 {
                font-size: 20px;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .feature-list, .location-grid, .character-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            .hero p {
                font-size: 16px;
            }
        }
