        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1525;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ee7b7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #10b981;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #1e293b;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1525 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            filter: brightness(1.2);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #cbd5e1;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #cbd5e1;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            background-color: #1a2332;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #6ee7b7;
        }
        .hero {
            background: radial-gradient(circle at top right, #1e3a8a30, transparent 50%),
                        radial-gradient(circle at bottom left, #7c3aed30, transparent 50%),
                        #0f1525;
            text-align: center;
            padding: 80px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #cbd5e1;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            background: #1e293b;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #334155;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #3b82f6;
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: transparent;
            color: #f1f5f9;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: filter 0.3s;
        }
        .search-box button:hover {
            filter: brightness(1.15);
        }
        .content-area {
            background-color: #111827;
            border-radius: 15px;
            padding: 50px;
            margin: 40px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }
        h1 { font-size: 3rem; }
        h2 {
            font-size: 2.4rem;
            color: #60a5fa;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin: 40px 0 20px;
        }
        h4 {
            font-size: 1.4rem;
            color: #6ee7b7;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.8em;
            font-size: 1.1rem;
            color: #d1d5db;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(96, 165, 250, 0.15);
            border-left: 4px solid #3b82f6;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background: #1e293b;
            padding: 25px;
            border-radius: 12px;
            transition: transform 0.3s, background 0.3s;
            border: 1px solid #334155;
        }
        .link-card:hover {
            transform: translateY(-8px);
            background: #1a2332;
            border-color: #3b82f6;
        }
        .link-card h4 {
            margin-top: 0;
        }
        .rating-section, .comments-section {
            background: #1a2332;
            padding: 40px;
            border-radius: 15px;
            margin: 60px 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #cbd5e1;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: #0f1525;
            border: 1px solid #334155;
            border-radius: 8px;
            color: #f1f5f9;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            color: white;
            padding: 16px 35px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
            filter: brightness(1.1);
        }
        .btn-secondary {
            background: linear-gradient(90deg, #8b5cf6, #ec4899);
        }
        .featured-image {
            margin: 50px auto;
            max-width: 900px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
            border: 3px solid #334155;
        }
        footer {
            background: #0a0f1a;
            padding: 70px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            font-size: 1rem;
            color: #94a3b8;
        }
        friend-link a {
            color: #94a3b8;
        }
        friend-link a:hover {
            color: #6ee7b7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 15px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.7rem; }
            .content-area {
                padding: 35px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: #1a2332;
                width: 280px;
                height: calc(100vh - 80px);
                padding: 40px 30px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            .hero {
                padding: 60px 15px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-area {
                padding: 25px 20px;
            }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            .rating-section, .comments-section {
                padding: 30px 20px;
            }
        }
