        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e, #0c0f16);
            padding: 20px 0;
            border-bottom: 3px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00a8ff;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #00a8ff;
            color: #0f1419;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1f2e;
            padding: 20px;
            margin-top: 15px;
            border-radius: 8px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px;
            border-bottom: 1px solid #2a2f3e;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00a8ff;
        }
        main {
            padding: 40px 0;
            background-color: #141a24;
        }
        article {
            background: rgba(26, 31, 46, 0.8);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 2px solid #00a8ff;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #00a8ff;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a2f3e;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 8px;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: bold;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border: 3px solid #00a8ff;
            box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .promo-list {
            list-style: none;
            padding: 20px;
            background-color: #1a1f2e;
            border-radius: 10px;
        }
        .promo-list li {
            padding: 12px;
            border-bottom: 1px dashed #2a2f3e;
            font-size: 1.2rem;
        }
        .promo-list li:last-child {
            border-bottom: none;
        }
        .promo-list li::before {
            content: "🎁";
            margin-right: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #00a8ff, #0056b3);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            color: white;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .functional-section {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
            border: 2px solid #00a8ff;
        }
        .functional-section h2 {
            text-align: center;
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00a8ff;
            font-weight: bold;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            background-color: #2a2f3e;
            border: 1px solid #00a8ff;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #00a8ff, #0056b3);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease, transform 0.2s;
        }
        .btn:hover {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .internal-links {
            background-color: #0c0f16;
            padding: 40px 0;
            border-top: 2px solid #00a8ff;
            border-bottom: 2px solid #00a8ff;
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s;
        }
        .web-link:hover {
            background-color: #00a8ff;
            transform: translateX(10px);
        }
        .web-link a {
            color: #e0e0e0;
            font-size: 1.1rem;
        }
        .web-link:hover a {
            color: #0f1419;
            font-weight: bold;
        }
        footer {
            padding: 30px 0;
            text-align: center;
            background-color: #0a0d14;
            color: #aaa;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #00a8ff;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #2a2f3e;
            padding-top: 20px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .functional-section {
                padding: 20px;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
