        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 30%, #16213e 100%);
            color: #e0e0e0;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #339af0;
            text-shadow: 0 0 8px rgba(77, 171, 247, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', Gadget, sans-serif;
            color: #f8c555;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 1rem;
            text-shadow: 0 0 10px rgba(248, 197, 85, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #4dabf7;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #74b9ff;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #f8c555;
            font-weight: 700;
        }
        em {
            color: #a29bfe;
        }
        blockquote {
            border-left: 4px solid #f8c555;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #b2bec3;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #f8c555;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: #f8c555;
            text-decoration: none;
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo a i {
            margin-right: 10px;
            color: #4dabf7;
        }
        .logo a:hover {
            color: #ffd166;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f8c555;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f8c555;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            background: rgba(10, 10, 20, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: #e0e0e0;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: #f8c555;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(30, 30, 46, 0.8);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #b2bec3;
        }
        .breadcrumb a:hover {
            color: #f8c555;
        }
        .breadcrumb span {
            color: #f8c555;
            margin: 0 8px;
        }
        .search-section {
            background: rgba(26, 26, 46, 0.9);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #444;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #4dabf7;
            border-radius: 50px 0 0 50px;
            background: #0c0c1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
            transform: scale(1.05);
        }
        .main-content {
            background: rgba(20, 20, 35, 0.85);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        .intro {
            font-size: 1.3rem;
            color: #74b9ff;
            margin-bottom: 40px;
            text-align: center;
            padding: 20px;
            border: 1px dashed #4dabf7;
            border-radius: 10px;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 900px;
            position: relative;
            overflow: hidden;
            border: 3px solid #f8c555;
        }
        .featured-image img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #95a5a6;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
            padding-left: 10px;
        }
        .info-card {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border-left: 6px solid #f8c555;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-5px);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(248, 197, 85, 0.1), transparent);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid rgba(248, 197, 85, 0.3);
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-form, .rating-form {
            background: rgba(26, 26, 46, 0.9);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #444;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #f8c555;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: #0c0c1a;
            border: 1px solid #4dabf7;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f8c555;
            box-shadow: 0 0 0 3px rgba(248, 197, 85, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f8c555, #ffa500);
            color: #0c0c1a;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffa500, #f8c555);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(248, 197, 85, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #f8c555;
        }
        .footer-links {
            background: rgba(10, 10, 20, 0.95);
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #4dabf7;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background: rgba(77, 171, 247, 0.1);
            border-radius: 50px;
            border: 1px solid rgba(77, 171, 247, 0.3);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(77, 171, 247, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
        }
        .site-footer {
            background: #0a0a14;
            color: #95a5a6;
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid #333;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #b2bec3;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { padding: 15px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .main-content { padding: 30px; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .section-padding { padding: 40px 0; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-button { border-radius: 50px; padding: 15px; }
            .user-interaction { grid-template-columns: 1fr; }
            .web-link { display: block; margin: 10px 0; text-align: center; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .main-content { padding: 20px; }
            h1 { font-size: 1.8rem; }
            .intro { font-size: 1.1rem; }
        }
