* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fafafa;
            color: #333;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #ff7e00, #27ae60);
            color: #ffffff;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.12);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #ffffff;
            text-decoration: none;
        }
        .logo span {
            color: #ffdd00;
        }
        nav {
            display: block;
            width: auto;
            margin-top: 0;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 28px;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        .nav-buttons {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .btn {
            padding: 11px 22px;
            border: none;
            border-radius: 35px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.02rem;
        }
        .btn-download {
            background-color: #e63946;
            color: white;
        }
        .btn-download:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(230,57,70,0.3);
        }
        .btn-login {
            background-color: #8e44ad;
            color: white;
        }
        .btn-login:hover {
            background-color: #732d91;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(142,68,173,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .hero {
            background: url('https://host.com/sasaram-quick-dash-hero.jpg') no-repeat center center;
            background-size: cover;
            padding: 90px 0;
            text-align: center;
            color: white;
            border-radius: 12px;
            margin: 35px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.65);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffdd00;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.25rem;
            margin: 0 auto 35px;
            line-height: 2.0;
            color: #f8f9fa;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        main {
            margin: 50px 0;
        }
        .section {
            margin-bottom: 70px;
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 3px 18px rgba(0,0,0,0.06);
        }
        .section h2 {
            color: #27ae60;
            font-size: 2.1rem;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #f0f0f0;
            font-weight: 700;
        }
        .section h3 {
            color: #2980b9;
            font-size: 1.6rem;
            margin: 28px 0 20px;
            font-weight: 600;
        }
        .section h4 {
            color: #e67e22;
            font-size: 1.3rem;
            margin: 22px 0 15px;
            font-weight: 600;
        }
        .section p {
            margin-bottom: 24px;
            font-size: 1.08rem;
            color: #444;
            line-height: 1.9;
        }
        .section ul {
            margin: 24px 0 24px 35px;
            list-style-type: disc;
        }
        .section ol {
            margin: 24px 0 24px 35px;
            list-style-type: decimal;
        }
        .section li {
            margin-bottom: 14px;
            font-size: 1.08rem;
            color: #444;
            line-height: 1.8;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.09);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-top: 4px solid #ff7e00;
        }
        .feature-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        }
        .feature-card i {
            font-size: 2.4rem;
            color: #ff7e00;
            margin-bottom: 20px;
            display: inline-block;
        }
        .feature-card h4 {
            font-size: 1.35rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 40px 0;
            text-align: center;
        }
        .stat-card {
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e3f2fd;
        }
        .stat-card .stat-value {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2980b9;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 1.05rem;
            color: #555;
            font-weight: 500;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid #ff7e00;
            padding: 20px 25px;
            margin: 35px 0;
            color: #555;
            font-size: 1.15rem;
            background-color: #fef9f2;
            border-radius: 0 8px 8px 0;
        }
        .quote-author {
            display: block;
            margin-top: 15px;
            font-size: 1.05rem;
            color: #777;
            font-style: normal;
            font-weight: 500;
        }
        .highlight-box {
            background-color: #e8f5e9;
            padding: 28px;
            border-radius: 10px;
            margin: 35px 0;
            border-left: 5px solid #27ae60;
        }
        .highlight-box h4 {
            color: #219653;
            margin-bottom: 18px;
        }
        .timeline {
            position: relative;
            margin: 40px 0;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: #ff7e00;
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ff7e00;
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(255,126,0,0.3);
        }
        .timeline-date {
            font-weight: 600;
            color: #2980b9;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .bottom-section {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0;
            border-radius: 12px;
            margin: 50px 0;
        }
        .bottom-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .bottom-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffdd00;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .bottom-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .bottom-column li {
            margin-bottom: 15px;
        }
        .bottom-column a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            font-size: 1.05rem;
            display: inline-block;
        }
        .bottom-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        .recommendation {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 5px solid #27ae60;
        }
        .recommendation h3 {
            color: #219653;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.8;
        }
        .game-categories {
            margin: 30px 0;
        }
        .game-categories h3 {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-tag {
            background-color: #e3f2fd;
            padding: 8px 18px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .category-tag a {
            color: #2980b9;
            text-decoration: none;
            font-weight: 500;
        }
        .category-tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid #34495e;
            margin-top: 40px;
            color: #bdc3c7;
            font-size: 1.02rem;
            line-height: 1.8;
        }
        .copyright a {
            color: #ffdd00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright a:hover {
            color: #ffc107;
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 20px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 25px;
                padding-top: 20px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
            }
            nav a {
                font-size: 1.1rem;
                padding: 10px 15px;
                display: block;
            }
            .hamburger {
                display: block;
            }
            .nav-buttons {
                margin-left: auto;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
            .section h4 {
                font-size: 1.25rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.7rem;
            }
            .btn {
                padding: 9px 18px;
                font-size: 0.95rem;
            }
            .nav-buttons {
                gap: 12px;
            }
            .hero {
                padding: 55px 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 18px;
            }
            .section {
                padding: 25px;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .quote {
                padding: 15px 20px;
                font-size: 1.05rem;
            }
            .bottom-content {
                gap: 30px;
            }
        }
        a:focus, button:focus {
            outline: 3px solid #ffdd00;
            outline-offset: 2px;
        }
        @media print {
            header, .hero, .nav-buttons, .bottom-section {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 14px;
            }
            .section {
                box-shadow: none;
                padding: 0;
                margin-bottom: 30px;
            }
            .section h2 {
                border-bottom: 2px solid #ccc;
            }
        }
