* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1A237E;
            --secondary: #FF6F00;
            --bg: #F5F5F5;
            --text: #212121;
            --accent: #00C853;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: var(--accent);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        main {
            padding: 40px 0;
        }
        .content-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        h1 {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
        }
        h2 {
            color: var(--primary);
            font-size: 28px;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        h3 {
            font-size: 22px;
            margin: 25px 0 10px;
            color: var(--accent);
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        .btn-login {
            background-color: var(--primary);
            color: white;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--primary);
            color: white;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 5px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: 0;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                width: 200px;
                transform: translateX(100%);
                transition: transform 0.3s;
                padding: 20px;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                margin: 15px 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
        }
        .highlight {
            background-color: #FFF8E1;
            padding: 10px;
            border-left: 4px solid var(--secondary);
            margin: 20px 0;
        }
        .daman-link {
            color: var(--secondary);
            font-weight: bold;
            text-decoration: none;
        }
        .daman-link:hover {
            text-decoration: underline;
        }
        .rating {
            color: var(--accent);
            font-size: 20px;
        }
        .mode-tag {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
