* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #121212;
            color: #F5F5F5;
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1E1E1E;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #7B2FFD;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #FFD700;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #F5F5F5;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #FFD700;
        }
        .daman-link {
            color: #FF4500;
            font-weight: bold;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .hamburger .bar {
            width: 25px;
            height: 3px;
            background-color: #F5F5F5;
            border-radius: 3px;
        }
        .hero {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.8)), url('https://host.com/phantom-realm-delhi-banner.jpg') center/cover no-repeat;
            border-radius: 10px;
            margin: 30px 0;
        }
        .hero h1 {
            font-size: 3rem;
            color: #7B2FFD;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(123,47,253,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #E0E0E0;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-download {
            background-color: #7B2FFD;
            color: white;
        }
        .btn-download:hover {
            background-color: #6A23E0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(123,47,253,0.4);
        }
        .btn-login {
            background-color: #FF4500;
            color: white;
        }
        .btn-login:hover {
            background-color: #E03D00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,69,0,0.4);
        }
        .content-section {
            margin: 60px 0;
        }
        .content-section h2 {
            font-size: 2rem;
            color: #FFD700;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #7B2FFD;
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: #FF4500;
            margin: 25px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1rem;
            color: #E0E0E0;
            line-height: 1.8;
        }
        .content-section .highlight {
            font-weight: bold;
            color: #FFD700;
        }
        .content-section .cultural-note {
            background-color: rgba(255,215,0,0.1);
            border-left: 4px solid #FFD700;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .content-section .list-container {
            margin: 20px 0 30px 25px;
        }
        .content-section .list-container li {
            margin-bottom: 10px;
            color: #E0E0E0;
        }
        .content-section img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .faq-container {
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            background-color: #1E1E1E;
            padding: 20px;
            border-radius: 10px;
        }
        .faq-question {
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .faq-answer {
            color: #E0E0E0;
        }
        footer {
            background-color: #1E1E1E;
            padding: 50px 0;
            border-top: 2px solid #7B2FFD;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: #E0E0E0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #FF4500;
        }
        .recommendation {
            background-color: rgba(123,47,253,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .recommendation h4 {
            color: #7B2FFD;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #A0A0A0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1E1E1E;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            .content-section h2 {
                font-size: 1.75rem;
            }
            .content-section h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            .nav-links {
                top: 120px;
            }
            .hero {
                padding: 40px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .footer-content {
                gap: 30px;
            }
        }
