        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff9900;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #222;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff9900;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: #ffcc00;
            color: #222;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #2a2a3e;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb ul li {
            margin-right: 0.5rem;
        }
        .breadcrumb ul li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #ffcc00;
        }
        main {
            padding: 2rem 0;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff9900;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: #ffdd44;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: #ffcc00;
            color: #222;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .interactive-section {
            background: #2a2a3e;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffcc00;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #444;
            border-radius: 5px;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ffcc00;
            outline: none;
        }
        button {
            background: #ffcc00;
            color: #222;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: #ff9900;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-top: 0.5rem;
        }
        .star {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #2a2a3e;
            border-radius: 10px;
        }
        .web-link {
            background: #1a1a2e;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: #ffcc00;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #fff;
            font-weight: bold;
        }
        .web-link:hover a {
            color: #222;
        }
        footer {
            background: #222;
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }
        .copyright {
            margin-top: 1rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #333;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0.5rem 0;
                margin-left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
