        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1a2a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4da6ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #ff7b00, #ff5500);
            color: white;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5);
            background: linear-gradient(135deg, #ff8c1a, #ff6600);
        }
        .site-header {
            background-color: #0a121f;
            padding: 15px 0;
            border-bottom: 2px solid #1a2d4a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #4da6ff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b3cde0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #0a121f;
            padding: 20px;
            border-top: 1px solid #1a2d4a;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: #b3cde0;
            font-weight: 600;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: #ffcc00;
            border-left-color: #ffcc00;
            background-color: rgba(255, 204, 0, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #131f32;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #4da6ff;
        }
        .breadcrumb a {
            color: #b3cde0;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #131f32;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        article h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3f5f;
        }
        article h3 {
            font-size: 1.8rem;
            color: #80c1ff;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        article em {
            color: #80c1ff;
            font-style: italic;
        }
        .intro-box {
            background: linear-gradient(145deg, #1a2d4a, #0f1a2a);
            border-left: 5px solid #ff9900;
            padding: 25px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .code-list {
            background-color: #0a121f;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px dashed #4da6ff;
        }
        .code-list h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .code-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #131f32;
            margin-bottom: 15px;
            border-radius: 8px;
            border-left: 4px solid #ff9900;
        }
        .code {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            color: #00ffaa;
            font-weight: bold;
            letter-spacing: 2px;
        }
        .reward {
            color: #ffcc00;
            font-weight: 600;
        }
        .expiry {
            color: #ff6666;
            font-size: 0.9rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #ffcc00;
            margin: 25px 0;
        }
        .player-quote {
            font-style: italic;
            color: #b3cde0;
            border-left: 4px solid #4da6ff;
            padding-left: 20px;
            margin: 30px 0;
        }
        .author {
            text-align: right;
            color: #ffcc00;
            font-weight: bold;
            margin-top: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #131f32;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3f5f;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #2a3f5f;
            background-color: #0a121f;
            color: #e0e0e0;
            border-radius: 30px 0 0 30px;
            outline: none;
        }
        .search-form button {
            padding: 12px 20px;
            background: linear-gradient(135deg, #4da6ff, #2a8cff);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #66b3ff, #3399ff);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            background-color: #0a121f;
            border: 1px solid #2a3f5f;
            color: #e0e0e0;
            border-radius: 8px;
            outline: none;
        }
        .rating-widget textarea, .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment {
            border-bottom: 1px solid #2a3f5f;
            padding: 15px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #b3cde0;
            font-size: 0.9rem;
        }
        .comment-user {
            color: #ffcc00;
            font-weight: bold;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            border: 3px solid #4da6ff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .img-caption {
            font-style: italic;
            color: #b3cde0;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: #131f32;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ff9900;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.1rem;
            color: #b3cde0;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        .site-footer {
            background-color: #0a121f;
            padding: 40px 0 20px;
            border-top: 2px solid #1a2d4a;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b3cde0;
        }
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a2d4a;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .header-container, .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .code-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
