        * {
            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, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6cb2ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff7b00, #ffcc00);
            color: #0c0c1d;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-align: center;
            box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.5);
            color: #0c0c1d;
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff7b00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff7b00, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #6cb2ff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            background: rgba(26, 26, 46, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #a0a0ff;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        article {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #333355;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff7b00, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #ffcc00;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444466;
        }
        h3 {
            font-size: 1.8rem;
            color: #6cb2ff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a0a0ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #d0d0ff;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(44, 44, 66, 0.8);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #555577;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #ffcc00;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff7b00;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: #ffcc00;
            font-size: 1.5rem;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 30px auto;
            border: 3px solid #ff7b00;
            box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaaacc;
            margin-top: 10px;
            font-size: 1rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .interactive-box {
            background: rgba(33, 33, 53, 0.9);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #444466;
        }
        .interactive-box h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(20, 20, 40, 0.8);
            border: 1px solid #555577;
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        form input:focus, form textarea:focus, form select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #555577;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(44, 44, 66, 0.5);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.15);
            transform: scale(1.03);
        }
        footer {
            background: #0c0c1d;
            border-top: 2px solid #ff7b00;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333355;
            color: #aaaacc;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(12, 12, 29, 0.98);
                width: 280px;
                height: calc(100vh - 80px);
                padding: 40px 30px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                border-left: 2px solid #ff7b00;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(2) { opacity: 0; }
            .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
            article { padding: 30px 20px; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .interactive-section { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .interactive-box, .stat-card {
            animation: fadeIn 0.8s ease-out;
        }
