* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            border-bottom: 3px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff6b00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 5px #000;
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: #ff9a00;
            text-shadow: 0 0 10px #ff6b00;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            background: #ff6b00;
            color: #000;
            transform: translateY(-3px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: #ff9a00;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff6b00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 46, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff9a00;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #666;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 15px;
            border-left: 5px solid #ff6b00;
        }
        h1 {
            font-size: 3rem;
            color: #ff9a00;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px #000;
        }
        .article-meta {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        section {
            background: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        section:hover {
            transform: translateY(-5px);
        }
        h2 {
            color: #ff6b00;
            font-size: 2.2rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #ff9a00;
            padding-bottom: 10px;
        }
        h3 {
            color: #ff9a00;
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            color: #e0e0e0;
        }
        .highlight {
            background: rgba(255, 107, 0, 0.2);
            padding: 20px;
            border-left: 4px solid #ff6b00;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ff9a00;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #ff6b00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            color: #aaa;
            font-style: italic;
        }
        .form-section {
            background: rgba(30, 30, 50, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .form-section h3 {
            color: #ff6b00;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b00;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff6b00, #ff9a00);
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, #ff9a00, #ff6b00);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
        }
        .rating i {
            color: #ff9a00;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .rating i:hover {
            color: #ff6b00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(255, 107, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #ff6b00;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 107, 0, 0.3);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ff9a00;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0a0a0a;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ff6b00;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ff6b00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff9a00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            .nav-links {
                flex-direction: column;
                gap: 15px;
                display: none;
                width: 100%;
                background: rgba(10, 10, 10, 0.95);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            section {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            header, footer, .form-section, .web-links, .hamburger {
                display: none;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
