        * {
            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: #333;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #f0f0f0;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffcc00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #f0f0f0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background: #ffcc00;
            color: #0c1a2d;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid #ffcc00;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #f0f0f0;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #2a4a6e;
            font-weight: 600;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #aaa;
        }
        .search-section {
            background: rgba(255, 204, 0, 0.1);
            padding: 30px 0;
            margin: 30px 0;
            border-radius: 10px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #ffcc00;
            border-radius: 50px;
            background: rgba(12, 26, 45, 0.8);
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            background: #ffcc00;
            color: #0c1a2d;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .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-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(79, 195, 247, 0.3);
        }
        h3 {
            font-size: 1.5rem;
            color: #81c784;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .bonus-box {
            background: linear-gradient(135deg, #1a3a5f, #0c1a2d);
            border: 2px dashed #ffcc00;
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            margin: 30px 0;
        }
        .bonus-code {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            letter-spacing: 3px;
            margin: 15px 0;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        a.content-link {
            color: #4fc3f7;
            text-decoration: underline;
            transition: color 0.3s;
        }
        a.content-link:hover {
            color: #ffcc00;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 10px;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ffcc00;
        }
        .quick-links a {
            display: block;
            color: #f0f0f0;
            text-decoration: none;
            padding: 12px 15px;
            margin-bottom: 8px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateX(5px);
        }
        .user-interaction {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        .interaction-title {
            color: #ffcc00;
            text-align: center;
            margin-bottom: 30px;
        }
        .rating-box {
            text-align: center;
            margin-bottom: 30px;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .star:hover,
        .star.active {
            transform: scale(1.2);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-input,
        .form-textarea {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2a4a6e;
            background: rgba(12, 26, 45, 0.8);
            color: white;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: #ffcc00;
            color: #0c1a2d;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: #ffd633;
            transform: translateY(-3px);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 50px 0;
            border-top: 1px solid #2a4a6e;
            border-bottom: 1px solid #2a4a6e;
            margin-top: 60px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 204, 0, 0.1);
        }
        .web-link a {
            color: #4fc3f7;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .copyright {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .article-content { padding: 25px; }
            .main-content { gap: 25px; }
            .bonus-code { font-size: 2rem; }
        }
