* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff9e5c;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            background: linear-gradient(45deg, #ff6b35, #ff9e5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: initial;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ff6b35;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
        }
        nav ul li a:hover {
            background-color: #ff6b35;
            color: #fff;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        main {
            padding: 40px 0;
            background-color: #1a1a1a;
            min-height: 100vh;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 30px;
            background-color: #222;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px solid #444;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9e5c;
            margin: 30px 0 15px;
            border-left: 5px solid #ff6b35;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0e0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #333;
            padding: 20px;
            border-left: 4px solid #ff6b35;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            border: 3px solid #444;
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .form-section {
            background-color: #2a2a2a;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .form-section h3 {
            color: #ff6b35;
        }
        form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background-color: #333;
            border: 1px solid #555;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(45deg, #ff6b35, #ff9e5c);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: bold;
        }
        button:hover {
            background: linear-gradient(45deg, #ff9e5c, #ff6b35);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input {
            width: auto;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #333;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: #444;
        }
        footer {
            background-color: #0f0f0f;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #444;
        }
        .copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-section {
                padding: 15px;
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
