        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f1b2f 0%, #1a2b3e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #4fc3f7;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        header {
            background: rgba(15, 27, 47, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid #4fc3f7;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo span {
            color: #4fc3f7;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #0f1b2f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #4fc3f7;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background: #1a2b3e;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            margin: 0 10px;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 20px auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 50px 0 0 50px;
            background: #fff;
            color: #333;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff6b00, #ffcc00);
            color: #000;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 35px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(26, 43, 62, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border: 3px solid #4fc3f7;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        aside {
            background: rgba(15, 27, 47, 0.9);
            border-radius: 20px;
            padding: 30px;
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .promo-box {
            background: linear-gradient(135deg, #ff6b00, #ffcc00);
            color: #000;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
        }
        .promo-box h3 {
            color: #000;
            margin-bottom: 15px;
        }
        .code-display {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: 3px;
            background: #000;
            color: #ffcc00;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            font-family: monospace;
        }
        .user-interaction {
            margin-top: 50px;
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #4fc3f7;
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 20px;
        }
        .comment-form button {
            background: #4fc3f7;
            color: #000;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff6b00;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        footer {
            background: #0a1420;
            padding: 40px 0 20px;
            border-top: 2px solid #4fc3f7;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 50px;
                margin-bottom: 15px;
            }
            .search-form button {
                border-radius: 50px;
                padding: 18px;
            }
            .content-wrapper {
                gap: 20px;
            }
            main, aside {
                padding: 25px;
            }
        }
