        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 0.5rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.5rem 0;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #60a5fa;
            border-bottom: 2px solid #60a5fa;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 1rem;
                border-top: 1px solid #334155;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1533105079780-92b9be482077?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 3rem 1rem;
            text-align: center;
            border-bottom: 3px solid #3b82f6;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #f8fafc;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cbd5e1;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #475569;
            border-radius: 8px 0 0 8px;
            background: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #94a3b8;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #475569;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #f8fafc;
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.5rem;
            color: #38bdf8;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #7dd3fc;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(96, 165, 250, 0.15);
            border-left: 4px solid #3b82f6;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            background: #0f172a;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .link-list li:before {
            content: "🎰";
            margin-right: 0.5rem;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 0.5rem;
        }
        aside {
            background: #1e293b;
            border-radius: 12px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #fbbf24;
        }
        .interaction-forms {
            background: #1e293b;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #cbd5e1;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 6px;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
        }
        .star-rating input[type=radio] {
            display: none;
        }
        .star-rating label {
            color: #475569;
            font-size: 1.5rem;
            padding: 0 2px;
            cursor: pointer;
        }
        .star-rating input[type=radio]:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #fbbf24;
        }
        .submit-btn {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        footer {
            background: #0f172a;
            border-top: 3px solid #334155;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #60a5fa;
        }
        friend-link {
            display: block;
            background: #1e293b;
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #cbd5e1;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
