:root {
            --dark-bg: #0f0f1a;
            --mid-bg: #1a1a2e;
            --accent-red: #dc143c;
            --accent-gold: #ffd700;
            --text-primary: #f8f8ff;
            --text-secondary: #dcdcdc;
            --shadow: 0 6px 12px rgba(0,0,0,0.4);
            --spacing: 1.2rem;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.9;
            font-size: 1rem;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--mid-bg);
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-red);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            text-shadow: 0 0 8px rgba(220,20,60,0.5);
        }
        .logo span {
            color: var(--accent-gold);
        }
        .nav-menu {
            display: flex;
            gap: 2.2rem;
            list-style: none;
        }
        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            color: var(--accent-red);
            border-bottom: 2px solid var(--accent-red);
        }
        .daman-link {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .daman-link:hover {
            color: var(--accent-red) !important;
            border-bottom: 2px solid var(--accent-red) !important;
        }
        .hamburger-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .hero {
            background: linear-gradient(rgba(15,15,26,0.95), rgba(26,26,46,0.9)), url('haunted-haveli-hero.jpg') center/cover no-repeat;
            padding: 8rem 0;
            text-align: center;
            border-bottom: 3px solid var(--accent-red);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('subtle-pattern.png') repeat;
            opacity: 0.05;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 2rem;
            color: var(--accent-red);
            line-height: 1.4;
            text-shadow: 0 0 10px rgba(220,20,60,0.6);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            color: var(--text-secondary);
            line-height: 2;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .btn {
            padding: 1.2rem 3rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--accent-red);
            color: var(--text-primary);
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent-gold);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .btn-download:hover {
            background-color: #b91335;
        }
        .btn-login:hover {
            background-color: rgba(255,215,0,0.1);
        }
        .main-content {
            padding: 5rem 0;
        }
        .section {
            margin-bottom: 8rem;
        }
        .section-header {
            margin-bottom: 3.5rem;
            position: relative;
            padding-bottom: 1.5rem;
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            text-shadow: 0 0 5px rgba(255,215,0,0.4);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: var(--accent-red);
            border-radius: 2px;
        }
        .section-intro {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 1200px;
        }
        .subsection {
            margin: 5rem 0 3rem;
        }
        .subsection-title {
            font-size: 1.8rem;
            color: var(--accent-red);
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .subsection-title i {
            font-size: 1.5rem;
        }
        .paragraph {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 2;
        }
        .highlight {
            font-weight: 700;
            color: var(--accent-gold);
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 3rem 0;
            color: var(--text-secondary);
            font-size: 1.15rem;
        }
        .stat-box {
            background-color: var(--mid-bg);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 4rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent-red);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.05rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }
        .card {
            background-color: var(--mid-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            border-top: 3px solid var(--accent-gold);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.5);
        }
        .card-title {
            font-size: 1.5rem;
            color: var(--accent-red);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .card-content {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .list {
            list-style: none;
            margin: 2rem 0;
        }
        .list-item {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
            font-size: 1.05rem;
        }
        .list-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-size: 1.5rem;
            font-weight: bold;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 4rem 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--mid-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th, .data-table td {
            padding: 1.5rem;
            text-align: left;
        }
        .data-table th {
            background-color: #2a2a42;
            color: var(--accent-gold);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .data-table tr:nth-child(even) {
            background-color: #222238;
        }
        .data-table td {
            color: var(--text-secondary);
            font-size: 1.05rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
        }
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .gallery-img:hover {
            transform: scale(1.03);
        }
        footer {
            background-color: var(--mid-bg);
            padding: 6rem 0 3rem;
            border-top: 3px solid var(--accent-red);
        }
        .footer-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 4rem;
            margin-bottom: 5rem;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-red);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-red);
        }
        .recommendation-box {
            background-color: var(--dark-bg);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }
        .recommendation-title {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        .recommendation-text {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .tags-container {
            margin: 3rem 0;
        }
        .tags-title {
            font-size: 1.2rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .tag {
            background-color: #2a2a42;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
        }
        .tag a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .tag a:hover {
            color: var(--accent-red);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .subsection-title {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--mid-bg);
                padding: 2rem;
                box-shadow: var(--shadow);
                gap: 1.5rem;
                border-top: 1px solid rgba(255,255,255,0.08);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .hero {
                padding: 6rem 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 1rem 2.2rem;
                font-size: 1rem;
            }
            .main-content {
                padding: 3.5rem 0;
            }
            .section {
                margin-bottom: 6rem;
            }
            .section-header {
                margin-bottom: 2.5rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .subsection {
                margin: 3.5rem 0 2rem;
            }
            .subsection-title {
                font-size: 1.5rem;
            }
            .paragraph {
                font-size: 1.05rem;
                margin-bottom: 1.8rem;
            }
            .stat-box {
                padding: 1.8rem;
                gap: 1.5rem;
            }
            .stat-value {
                font-size: 2.2rem;
            }
            .card {
                padding: 2rem;
            }
            footer {
                padding: 4rem 0 2rem;
            }
            .footer-wrapper {
                gap: 3rem;
                margin-bottom: 3rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.6rem;
            }
            .hero {
                padding: 4.5rem 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            .cta-buttons {
                gap: 1.2rem;
            }
            .btn {
                padding: 0.8rem 1.8rem;
                width: 100%;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .subsection-title {
                font-size: 1.4rem;
            }
            .stat-value {
                font-size: 1.8rem;
            }
            .card-grid {
                gap: 1.5rem;
            }
            .footer-wrapper {
                gap: 2.5rem;
            }
            .copyright {
                font-size: 0.85rem;
            }
        }
