* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
            background-image: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.1) 0%, rgba(30, 64, 175, 0.05) 90%);
        }
        .nav-container {
            background-color: #1e293b;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 34px;
            font-weight: 900;
            color: #7c3aed;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 12px;
            text-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #7c3aed, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #f8fafc;
            background: none;
            -webkit-text-fill-color: #f8fafc;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 17px;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background-color: #334155;
            color: #c084fc;
            border-color: #7c3aed;
            transform: translateY(-2px);
        }
        .nav-links .daman-link {
            background-color: #7c3aed;
            color: #ffffff;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
        }
        .nav-links .daman-link:hover {
            background-color: #6d28d9;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(124, 58, 237, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 30px;
            color: #f8fafc;
            cursor: pointer;
            text-align: right;
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            padding: 16px 30px;
            border-radius: 10px;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 12px 8px;
            font-size: 19px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #10b981;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }
        .btn-login {
            background-color: #3b82f6;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .btn-download:hover {
            background-color: #059669;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        }
        .btn-login:hover {
            background-color: #2563eb;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            font-size: 42px;
            color: #f8fafc;
            margin: 40px 0 35px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #7c3aed;
            padding-bottom: 20px;
            text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #f8fafc, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 32px;
            color: #e9d5ff;
            margin: 50px 0 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            border-left: 5px solid #7c3aed;
            padding-left: 18px;
            text-transform: capitalize;
        }
        h2::before {
            content: "🚀";
            margin-right: 12px;
            font-size: 36px;
        }
        h3 {
            font-size: 26px;
            color: #c084fc;
            margin: 35px 0 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
            text-transform: capitalize;
        }
        h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #7c3aed;
        }
        h4 {
            font-size: 22px;
            color: #60a5fa;
            margin: 25px 0 15px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "✨";
            margin-right: 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
            color: #e2e8f0;
            padding: 0 2px;
        }
        .highlight {
            font-weight: 800;
            color: #f472b6;
            font-size: 19px;
        }
        .keyword {
            font-weight: 900;
            color: #a78bfa;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            border: 2px solid #7c3aed;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 25px 50px;
            font-size: 18px;
            line-height: 2.1;
            color: #e2e8f0;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 12px;
        }
        li::marker {
            color: #7c3aed;
            font-weight: bold;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #1e293b;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        .stats-table th, .stats-table td {
            padding: 18px 22px;
            text-align: left;
            border-bottom: 2px solid #334155;
        }
        .stats-table th {
            background-color: #334155;
            color: #f8fafc;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #27364b;
            transform: scale(1.005);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .review-card {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            border-left: 6px solid #3b82f6;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        }
        .reviewer {
            font-weight: 800;
            color: #f8fafc;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-size: 20px;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
            font-size: 24px;
        }
        .review-location {
            color: #94a3b8;
            font-size: 17px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .review-location::before {
            content: "📍";
            margin-right: 8px;
        }
        .review-rating {
            color: #f59e0b;
            margin-bottom: 12px;
            font-size: 22px;
        }
        .genre-section, .tag-section {
            margin: 60px 0 40px;
            background-color: #1e293b;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .genre-title, .tag-title {
            font-size: 24px;
            color: #f8fafc;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genre-item, .tag-item {
            background-color: #334155;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .genre-item:hover, .tag-item:hover {
            background-color: #7c3aed;
            transform: translateY(-2px);
        }
        .genre-item a, .tag-item a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
        }
        .genre-item:hover a, .tag-item:hover a {
            color: #ffffff;
        }
        footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 60px 25px 30px;
            margin-top: 80px;
            border-top: 3px solid #7c3aed;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-note {
            font-size: 20px;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.9;
            color: #f8fafc;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #c084fc;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #f8fafc;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .copyright {
            text-align: center;
            font-size: 17px;
            color: #94a3b8;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #334155;
        }
        .cta-section {
            text-align: center;
            margin: 60px 0;
            padding: 45px 25px;
            background-color: #1e293b;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #7c3aed;
        }
        .cta-title {
            font-size: 28px;
            color: #f8fafc;
            margin-bottom: 35px;
            font-weight: 800;
            text-transform: capitalize;
            line-height: 1.7;
        }
        .cta-highlight {
            color: #f472b6;
            background: linear-gradient(90deg, #f472b6, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 34px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 28px;
            }
            h2::before {
                font-size: 32px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 16px;
                font-size: 20px;
            }
            .stats-table th, .stats-table td {
                padding: 12px 15px;
                font-size: 16px;
            }
            .review-card {
                padding: 20px;
            }
            .img-container {
                margin: 30px 0;
            }
            ul, ol {
                margin-left: 30px;
            }
            .cta-title {
                font-size: 24px;
            }
            .logo {
                font-size: 28px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1e293b;
        }
        ::-webkit-scrollbar-thumb {
            background: #7c3aed;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #6d28d9;
        }
        .internal-link {
            color: #60a5fa;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #93c5fd;
            text-decoration: none;
        }
        .section-spacing {
            margin-top: 60px;
        }
        .sub-section-spacing {
            margin-top: 30px;
        }
