        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #f8b700;
            --secondary-color: #2a2a72;
            --accent-color: #00a86b;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: var(--light-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--dark-color);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #ffcc00;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .section-padding {
            padding: 80px 0;
        }
        .text-center {
            text-align: center;
        }
        .highlight {
            color: var(--primary-color);
            font-weight: bold;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #f8b700, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-color);
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(42, 42, 114, 0.5);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            color: var(--gray-color);
            margin: 0 10px;
        }
        .hero {
            padding: 60px 20px;
            background: radial-gradient(circle at center, #302b63 0%, #1a1a2e 70%);
            text-align: center;
            border-bottom: 5px solid var(--primary-color);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #f8b700, #ffcc00, #f8b700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .search-section {
            background: rgba(42, 42, 114, 0.3);
            padding: 30px 20px;
            border-radius: 15px;
            margin: 40px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid var(--primary-color);
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            background: var(--primary-color);
            color: var(--dark-color);
            border: none;
            border-radius: 50px;
            padding: 0 35px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #ffcc00;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content article {
            background: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary-color);
        }
        article h2 {
            font-size: 2.5rem;
            margin: 25px 0 15px;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 2px dashed rgba(248, 183, 0, 0.3);
        }
        article h3 {
            font-size: 1.8rem;
            margin: 20px 0 10px;
            color: #ffcc00;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        article li {
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-height: 500px;
            object-fit: cover;
            border: 5px solid var(--primary-color);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .gif-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .gif-item {
            background: rgba(42, 42, 114, 0.5);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.5s;
        }
        .gif-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(248, 183, 0, 0.2);
        }
        .gif-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }
        .gif-info {
            padding: 15px;
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.7);
            padding: 30px;
            border-radius: 20px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.8rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(248, 183, 0, 0.3);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(42, 42, 114, 0.3);
            border-radius: 10px;
            transition: var(--transition);
        }
        .sidebar li:hover {
            background: rgba(248, 183, 0, 0.2);
            transform: translateX(5px);
        }
        .sidebar a {
            color: #ddd;
            display: block;
            font-weight: 500;
        }
        .rating-section, .comment-section {
            background: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 25px;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--primary-color);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .form-group label {
            font-weight: bold;
            color: #ccc;
        }
        .form-control {
            padding: 18px;
            border-radius: 10px;
            border: 2px solid rgba(248, 183, 0, 0.5);
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            background: rgba(255,255,255,0.1);
        }
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        .footer-links {
            background: rgba(26, 26, 46, 0.9);
            padding: 50px 20px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(42, 42, 114, 0.5);
            padding: 15px 30px;
            margin: 10px;
            border-radius: 50px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(248, 183, 0, 0.2);
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-weight: 500;
        }
        footer {
            background: #0f0c29;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .search-form { flex-direction: column; }
            .search-btn { padding: 18px; }
            .content-wrapper { padding: 20px 10px; gap: 30px; }
            .main-content article { padding: 25px; }
            article h2 { font-size: 2rem; }
            article h3 { font-size: 1.6rem; }
            .sidebar { position: static; }
            .web-link { display: block; margin: 10px 0; }
        }
