:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --text: #f5f5f5;
            --text-light: #d1d1e0;
            --shadow: 0 4px 8px rgba(0,0,0,0.3);
            --spacing: 1.5rem;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.8;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--secondary);
            padding: 1rem 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: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            color: var(--text);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .daman-link {
            color: var(--accent);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(26,26,46,0.9), rgba(22,33,62,0.9)), url('https://host.com/haunted-mansion-delhi-hero.jpg') center/cover no-repeat;
            padding: 6rem 0;
            text-align: center;
            border-bottom: 2px solid var(--accent);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: var(--text-light);
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--text);
        }
        .btn-login {
            background-color: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            color: var(--accent);
            position: relative;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        .section-subtitle {
            font-size: 1.5rem;
            margin: 2rem 0 1.5rem;
            color: var(--text-light);
        }
        .paragraph {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: var(--text-light);
        }
        .highlight {
            font-weight: 700;
            color: var(--accent);
        }
        .emoji {
            margin-right: 0.5rem;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .list {
            list-style: disc;
            margin: 1rem 0 1.5rem 2rem;
            color: var(--text-light);
        }
        .list-item {
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: var(--secondary);
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .recommendation {
            background-color: var(--primary);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .recommendation-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                padding: 2rem;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }
            .section {
                padding: 2.5rem 0;
            }
        }
