        * {
            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, #0a1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-1px);
        }
        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, #ff9800, #ff5722);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(255, 87, 34, 0.5);
        }
        header {
            background: rgba(10, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e88e5;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
            color: #ff9800;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #bbdefb;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff9800;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9800;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 26, 45, 0.98);
            border-top: 1px solid #1e88e5;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            display: flex;
        }
        .mobile-nav a {
            color: #bbdefb;
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid rgba(30, 136, 229, 0.2);
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #90a4ae;
            border-bottom: 1px solid rgba(144, 164, 174, 0.2);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #bbdefb;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(30, 40, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc80;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #81d4fa;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(129, 212, 250, 0.3);
        }
        h3 {
            font-size: 1.6rem;
            color: #a5d6a7;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 152, 0, 0.1);
            border-left: 5px solid #ff9800;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(41, 182, 246, 0.1);
            border: 1px solid #29b6f6;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #29b6f6;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: #ffcc80;
            margin-bottom: 10px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-height: 500px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            font-style: italic;
            color: #b0bec5;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            margin: 50px 0;
            padding: 30px;
            background: rgba(13, 71, 161, 0.2);
            border-radius: 15px;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #ffcc80;
        }
        form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #546e7a;
            background: rgba(255, 255, 255, 0.08);
            color: #e0e0e0;
            font-size: 1rem;
            flex: 1;
            min-width: 250px;
        }
        textarea {
            min-height: 120px;
            width: 100%;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffeb3b;
        }
        .footer-links {
            background: rgba(10, 26, 45, 0.9);
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            background: rgba(30, 136, 229, 0.15);
            margin: 8px;
            padding: 12px 24px;
            border-radius: 25px;
            border: 1px solid rgba(30, 136, 229, 0.4);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(30, 136, 229, 0.3);
            transform: translateY(-3px);
        }
        footer {
            background: #0a1a2d;
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #1e88e5;
            font-size: 0.95rem;
            color: #90a4ae;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
        }
        .social-icons a {
            font-size: 1.5rem;
            color: #bbdefb;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            article { padding: 25px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .stats-grid { grid-template-columns: 1fr; }
            form { flex-direction: column; }
            input, textarea, select { min-width: 100%; }
        }
