* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1a2d;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b3c 0%, #0d1520 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff9900;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: #ff9900;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            font-size: 2.5rem;
            color: #00a8ff;
        }
        .logo a:hover {
            color: #00a8ff;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
        }
        .search-box {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-box form {
            display: flex;
            background: #1e2a3a;
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid #2a3b4d;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
        }
        .search-box input:focus {
            outline: none;
            background: #2a3b4d;
        }
        .search-box button {
            background: #ff9900;
            color: #000;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #00a8ff;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ff9900;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            margin-top: 1rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            background: #1a2b3c;
            border-radius: 10px;
            padding: 10px;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 10px;
        }
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            display: block;
        }
        .nav-links a:hover, .nav-links a.active {
            background: #ff9900;
            color: #000;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #a0a0a0;
        }
        .breadcrumb a {
            color: #00a8ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: #1a2b3c;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #ff9900;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #00a8ff;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3b4d;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc66;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #66ccff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #2a3b4d;
            padding: 20px;
            border-left: 5px solid #ff9900;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: #0d1520;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2a3b4d;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
        }
        .stat-card h4 {
            color: #ff9900;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: bold;
            color: #00a8ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: 10px;
            border: 3px solid #2a3b4d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a0a0a0;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .link-list {
            background: #0d1520;
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .link-list a {
            color: #ff9900;
            text-decoration: none;
            padding: 10px 20px;
            background: #1a2b3c;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: #ff9900;
            color: #000;
        }
        .rating-section, .comment-section {
            background: #1a2b3c;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
        }
        .rating-stars i {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ff9900;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #00a8ff;
        }
        input, textarea, select {
            padding: 15px;
            background: #0d1520;
            border: 2px solid #2a3b4d;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff9900;
        }
        button[type="submit"] {
            background: #ff9900;
            color: #000;
            border: none;
            padding: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
            min-width: 200px;
        }
        button[type="submit"]:hover {
            background: #00a8ff;
            color: #fff;
        }
        footer {
            background: #0d1520;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #2a3b4d;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ff9900;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #00a8ff;
            text-decoration: none;
            padding: 8px 0;
            display: block;
            border-bottom: 1px dashed #2a3b4d;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: #ff9900;
            border-bottom-style: solid;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b4d;
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }
            .search-box {
                max-width: 100%;
                margin: 0;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 5px 0;
            }
        }
        @media (max-width: 768px) {
            article {
                padding: 1.5rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .rating-stars i {
                font-size: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .rating-section, .comment-section {
            animation: fadeIn 0.8s ease-out;
        }
