        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fb4;
            --accent-gold: #f0b232;
            --accent-red: #c7444a;
            --light-bg: #f5f7fa;
            --text-light: #e4e6eb;
            --text-gray: #8a8f98;
            --card-bg: #1e222d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd166;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #d89b20);
            color: var(--primary-dark);
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(240, 178, 50, 0.3);
        }
        .section {
            padding: 60px 0;
        }
        header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a2f3d;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary-blue);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid #2a2f3d;
            color: var(--text-light);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 20px;
            background-color: #151922;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(rgba(26, 95, 180, 0.1), rgba(10, 14, 23, 0.9));
            padding: 40px 0;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2a2f3d;
            background: #151922;
            color: var(--text-light);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #1a4f9c;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at top, rgba(26, 95, 180, 0.15), transparent 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #f0b232, #ff7b54);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a5fb4, #0f3273);
            border-left: 5px solid var(--accent-gold);
            padding: 25px;
            border-radius: 8px;
            max-width: 900px;
            margin: 40px auto;
            text-align: left;
        }
        .highlight-box h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        main {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        article h2 {
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a2f3d;
            font-size: 2rem;
        }
        article h3 {
            color: var(--primary-blue);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ccd0d9;
        }
        article strong {
            color: var(--accent-gold);
        }
        .code-list {
            background: #151922;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            border: 1px dashed var(--accent-gold);
        }
        .code-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            margin-bottom: 15px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .code-item:hover {
            background: rgba(240, 178, 50, 0.1);
            transform: translateX(5px);
        }
        .code {
            font-family: monospace;
            font-size: 1.4rem;
            color: var(--accent-gold);
            font-weight: bold;
            letter-spacing: 2px;
        }
        .reward {
            color: var(--text-light);
            font-weight: 600;
        }
        .expiry {
            color: var(--accent-red);
            font-size: 0.9rem;
        }
        .image-container {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            position: relative;
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 15px;
            background: rgba(10, 14, 23, 0.8);
            font-style: italic;
            color: var(--text-gray);
            text-align: center;
        }
        aside {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a2f3d;
        }
        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid #2a2f3d;
            list-style: none;
        }
        .sidebar-list li:before {
            content: '▶';
            color: var(--primary-blue);
            margin-right: 10px;
            font-size: 0.8rem;
        }
        .rating-section, .comment-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            margin-top: 40px;
        }
        .rating-box {
            text-align: center;
            margin-bottom: 30px;
        }
        .stars {
            font-size: 2.5rem;
            color: var(--text-gray);
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: #151922;
            border: 2px solid #2a2f3d;
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background: #151922;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(26, 95, 180, 0.2);
            transform: translateY(-5px);
        }
        footer {
            background: #0c0f16;
            padding: 40px 0 20px;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a2f3d;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 6px;
                margin-bottom: 10px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            main, .rating-section, .comment-section {
                padding: 25px;
            }
        }
