        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0f1d 0%, #1a1f3a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        h1, h2, h3, h4 {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            color: #ffcc00;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 1.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff5722;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4fc3f7;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #bbbbbb;
            font-weight: 300;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 2rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,87,34,0.2) 0%, rgba(255,87,34,0) 100%);
            border-left: 4px solid #ff5722;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff5722, #ff9800);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
            text-decoration: none;
            color: white;
        }
        .btn-secondary {
            background: linear-gradient(to right, #2196F3, #21CBF3);
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
        }
        .site-header {
            background: rgba(12, 15, 29, 0.95);
            border-bottom: 2px solid #ff5722;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffcc00, #ff5722);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 1rem 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #ff5722;
        }
        .search-section {
            background: rgba(26, 31, 58, 0.8);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: #1e233f;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ff5722;
        }
        .search-form button {
            background: linear-gradient(to right, #ff5722, #ff9800);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #e64a19, #f57c00);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 35, 63, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            background: rgba(30, 35, 63, 0.7);
            padding: 1.5rem;
            border-radius: 15px;
            align-self: start;
        }
        .promo-box {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            border: 3px dashed #ffcc00;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 2.5rem 0;
        }
        .promo-code {
            font-family: 'Courier New', monospace;
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            letter-spacing: 3px;
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 8px;
            margin: 1rem 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        .promo-code:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: scale(1.02);
        }
        .codes-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        .codes-table th, .codes-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #444;
        }
        .codes-table th {
            background: #ff5722;
            color: white;
            font-weight: 700;
        }
        .codes-table tr:hover {
            background: rgba(255, 87, 34, 0.1);
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            border: 3px solid #4fc3f7;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .interaction-section {
            background: rgba(30, 35, 63, 0.9);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .fa-star {
            margin: 0 3px;
        }
        .stars .active, .stars .fa-star:hover {
            color: #ffcc00;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #bbbbbb;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #1e233f;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(255, 87, 34, 0.1);
            border: 1px solid #ff5722;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 87, 34, 0.25);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f0f0f0;
            font-weight: 600;
        }
        .site-footer {
            background: #0a0c1a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #ff5722;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffcc00, #ff5722);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            .main-nav { display: none; width: 100%; order: 3; margin-top: 1rem; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .hamburger { display: block; }
            .web-links { grid-template-columns: repeat(2, 1fr); }
            .article-content, .sidebar { padding: 1.5rem; }
            .promo-code { font-size: 2rem; }
        }
        @media (max-width: 480px) {
            .web-links { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; padding: 15px; }
        }
