* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF3E00;
            --secondary: #1A1A2E;
            --accent: #F7B32B;
            --light: #F5F5F5;
            --dark: #222831;
            --text: #333333;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 15px 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;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        nav ul li a:hover {
            color: var(--accent);
        }
        .daman-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: underline;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 15px;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            border: none;
        }
        .btn-download:hover {
            background-color: #e03600;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,62,0,0.3);
        }
        .btn-login {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        .btn-login:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(26,26,46,0.8), rgba(26,26,46,0.8)), url('https://host.com/images/ninja-velocity-rush-hero.jpg') center/cover no-repeat;
            padding: 80px 0;
            color: white;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        .content-area {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .info-list {
            list-style: none;
        }
        .info-list li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }
        .info-list li span:first-child {
            font-weight: 600;
            color: var(--secondary);
        }
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 10px;
            margin-top: 0;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 40px;
            padding-left: 15px;
            border-left: 4px solid var(--accent);
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 30px;
            color: var(--secondary);
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 20px;
            color: var(--primary);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        ul, ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        ul li, ol li {
            margin-bottom: 10px;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .img-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--secondary);
            color: white;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .highlight {
            background-color: rgba(247,179,43,0.1);
            padding: 2px 5px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--primary);
        }
        .callout {
            background-color: rgba(26,26,46,0.05);
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .callout p {
            margin-bottom: 0;
            font-weight: 500;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: var(--secondary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .categories {
            margin: 30px 0;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .category:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 0 20px;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-column ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-content .btn {
                display: none;
            }
            .hero-buttons .btn {
                margin: 10px 0;
                width: 100%;
                max-width: 300px;
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-area {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
