        * { 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.6;
            color: #e0e0e0;
            background: #0a0e17;
            background-image: radial-gradient(circle at 15% 50%, rgba(0, 70, 120, 0.15) 0%, transparent 55%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #74c0fc; text-shadow: 0 0 8px rgba(116, 192, 252, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #ffffff;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            position: relative;
            padding-bottom: 0.5rem;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            text-align: center;
            margin-top: 1.5rem;
            border-bottom: 3px solid #1c7ed6;
            padding-bottom: 1rem;
            background: linear-gradient(90deg, #4dabf7, #a5d8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #1c7ed6;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 { font-size: 1.8rem; color: #a5d8ff; }
        h4 { font-size: 1.5rem; color: #bac8ff; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #c5f6fa;
            font-weight: 300;
            text-align: center;
            max-width: 900px;
            margin: 1.5rem auto 2.5rem;
            padding: 1rem;
            border-radius: 10px;
            background: rgba(28, 126, 214, 0.1);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(28, 126, 214, 0.2), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 15px;
            padding-right: 15px;
        }
        main { padding: 2rem 0; }
        section { margin-bottom: 3rem; }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #1c7ed6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo-area { flex: 0 0 auto; }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #4dabf7;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }
        .my-logo:hover {
            color: #74c0fc;
            background: rgba(28, 126, 214, 0.2);
            transform: translateY(-2px);
        }
        .my-logo i { font-size: 2.2rem; }
        .breadcrumb {
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #a5d8ff; }
        .breadcrumb span { color: #adb5bd; }
        .nav-primary {
            display: flex;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-menu a {
            color: #e9ecef;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }
        .nav-menu a:hover {
            background: rgba(28, 126, 214, 0.3);
            color: #74c0fc;
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4dabf7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            flex: 1;
            max-width: 400px;
            margin: 0 2rem;
        }
        .search-form {
            display: flex;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 0.8rem 1.2rem;
            padding-right: 3rem;
            border-radius: 30px;
            border: 2px solid #495057;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #4dabf7;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        .search-button {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            background: #1c7ed6;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover { background: #339af0; }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .card {
            background: linear-gradient(145deg, rgba(30, 40, 60, 0.8), rgba(15, 20, 35, 0.9));
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid rgba(77, 171, 247, 0.2);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s, box-shadow 0.4s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(77, 171, 247, 0.4);
        }
        .card-title {
            font-size: 1.5rem;
            color: #4dabf7;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .featured-image {
            width: 100%;
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #1c7ed6;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #adb5bd;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.4);
        }
        .interactive-section {
            background: rgba(28, 126, 214, 0.08);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px dashed #4dabf7;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-label { margin-bottom: 0.5rem; font-weight: 600; color: #a5d8ff; }
        .form-input, .form-textarea {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #495057;
            background: rgba(255, 255, 255, 0.07);
            color: #ffffff;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #495057;
            margin: 0.5rem 0;
        }
        .star-rating label { cursor: pointer; transition: color 0.3s; }
        .star-rating input { display: none; }
        .star-rating input:checked ~ label { color: #ffd43b; }
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffd43b; }
        .submit-button {
            background: linear-gradient(90deg, #1c7ed6, #4dabf7);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #339af0, #74c0fc);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(28, 126, 214, 0.4);
        }
        .site-footer {
            background: linear-gradient(to top, #0d1b2a, #1b263b);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #1c7ed6;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: #4dabf7;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #868e96;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .last-updated {
            display: inline-block;
            background: rgba(40, 167, 69, 0.15);
            color: #8ce99a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 1rem 0 2rem;
        }
        .tag {
            display: inline-block;
            background: rgba(77, 171, 247, 0.15);
            color: #a5d8ff;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 992px) {
            .header-content { flex-direction: column; align-items: stretch; gap: 1rem; }
            .search-container { max-width: 100%; margin: 1rem 0; order: 3; }
            .nav-menu { justify-content: center; flex-wrap: wrap; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(13, 27, 42, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-menu.active { display: flex; }
            .card { padding: 1.3rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .interactive-section { padding: 1.8rem; }
        }
