        * {
            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, #0a1f3a 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 31, 58, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd700, #ffa500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav a:hover {
            background: rgba(255, 215, 0, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.95rem;
            color: #aaa;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1543430953-84a7d8b4c6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid #ffd700;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto;
            padding: 30px;
            background: rgba(255,255,255,0.08);
            border-radius: 15px;
            border: 1px solid rgba(255,215,0,0.3);
        }
        .search-box h2 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #4dabf7;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1.1rem;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(to right, #4dabf7, #1c7ed6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #339af0, #1971c2);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            background: rgba(30, 50, 80, 0.6);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .content h2 {
            color: #ffd700;
            font-size: 2.5rem;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #4dabf7;
        }
        .content h3 {
            color: #74c0fc;
            font-size: 1.8rem;
            margin: 25px 0 15px;
        }
        .content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .content img {
            margin: 30px auto;
            border-radius: 10px;
            border: 3px solid #ffd700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 5px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .link-list a {
            background: rgba(77, 171, 247, 0.2);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #4dabf7;
        }
        .link-list a:hover {
            background: rgba(77, 171, 247, 0.4);
            text-decoration: none;
        }
        aside {
            background: rgba(30, 50, 80, 0.6);
            padding: 30px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        aside h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .stars i {
            cursor: pointer;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        textarea, input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .submit-btn {
            background: linear-gradient(to right, #ffd700, #ffa500);
            color: #000;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        footer {
            background: #0a1f3a;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 5px solid #ffd700;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 31, 58, 0.98);
                padding: 20px;
                display: none;
            }
            nav.active ul {
                display: flex;
            }
            .search-form {
                flex-direction: column;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content h2 {
                font-size: 2rem;
            }
        }
