        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a14;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0c0c1a 0%, #1a1a2e 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2d2d4d;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #f8c307, #e44d26);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease-in-out infinite alternate;
        }
        @keyframes logoGlow {
            from { text-shadow: 0 0 5px rgba(248, 195, 7, 0.5); }
            to { text-shadow: 0 0 15px rgba(248, 195, 7, 0.8), 0 0 20px rgba(228, 77, 38, 0.6); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #b3b3cc;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #fff;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f8c307, #e44d26);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a8aa3;
            background-color: #121225;
            border-bottom: 1px solid #2d2d4d;
        }
        .breadcrumb a {
            color: #8a8aa3;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: #4d4d6d;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
            z-index: 1001;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #f8c307;
            margin: 3px 0;
            transition: 0.4s;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        .search-form {
            display: flex;
            margin-left: 2rem;
        }
        .search-form input[type="search"] {
            padding: 0.6rem 1rem;
            border: 1px solid #4d4d6d;
            border-radius: 50px 0 0 50px;
            background-color: #1a1a2e;
            color: #e0e0e0;
            width: 220px;
            outline: none;
        }
        .search-form button {
            padding: 0.6rem 1.2rem;
            background: linear-gradient(90deg, #2d2d4d, #4d4d6d);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #3d3d5d, #5d5d7d);
        }
        .main-content {
            padding: 3rem 0;
            background-color: #0f0f1a;
        }
        article {
            background-color: #121225;
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid #2d2d4d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #f8c307;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #2d2d4d;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #4dabf7;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2d2d4d;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b3b3cc;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #c0c0e0;
            line-height: 1.8;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: #1a1a2e;
            border-left: 4px solid #f8c307;
            border-radius: 0 8px 8px 0;
        }
        strong, b {
            color: #ffd43b;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-left: 5px solid #e44d26;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
        }
        .image-caption {
            font-style: italic;
            color: #8a8aa3;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .quote {
            font-style: italic;
            color: #a5d8ff;
            border-left: 4px solid #4dabf7;
            padding-left: 1.5rem;
            margin: 2rem 0 2rem 1.5rem;
            font-size: 1.2rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #8a8aa3;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #4d4d6d;
        }
        .content-link {
            background-color: rgba(77, 171, 247, 0.1);
            padding: 0.1em 0.3em;
            border-radius: 3px;
            border-bottom: 1px dashed #4dabf7;
        }
        .content-link:hover {
            background-color: rgba(77, 171, 247, 0.2);
        }
        .interactive-section {
            background-color: #1a1a2e;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #3d3d5d;
        }
        .interactive-section h2 {
            border-bottom: none;
            color: #f8c307;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b3b3cc;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #4d4d6d;
            background-color: #0a0a14;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 1rem 0;
            justify-content: center;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #4d4d6d;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #f8c307;
        }
        .form-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .btn-primary {
            background: linear-gradient(90deg, #f8c307, #e44d26);
            color: #0a0a14;
        }
        .btn-primary:hover {
            background: linear-gradient(90deg, #ffd43b, #ff6b35);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(248, 195, 7, 0.3);
        }
        .btn-secondary {
            background-color: transparent;
            color: #b3b3cc;
            border: 2px solid #4d4d6d;
        }
        .btn-secondary:hover {
            border-color: #4dabf7;
            color: #4dabf7;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0c0c1a;
            padding: 3rem 0 2rem;
            border-top: 2px solid #2d2d4d;
            margin-top: 4rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #f8c307;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.7rem;
        }
        .footer-section a {
            color: #b3b3cc;
        }
        friend-link {
            display: block;
            background-color: #1a1a2e;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border: 1px solid #3d3d5d;
        }
        friend-link h3 {
            color: #a5d8ff;
            margin-bottom: 1rem;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-link-list a {
            background-color: #0a0a14;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid #4d4d6d;
            transition: all 0.3s;
        }
        .friend-link-list a:hover {
            background-color: #1a1a2e;
            border-color: #4dabf7;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d2d4d;
            color: #8a8aa3;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 2rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                margin-left: 0;
                margin-top: 1rem;
                order: 3;
                width: 100%;
            }
            .search-form input[type="search"] {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: #0c0c1a;
                padding: 6rem 2rem 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 1000;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hamburger {
                display: flex;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .lead { font-size: 1.2rem; }
            .interactive-section {
                padding: 1.8rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .btn {
                padding: 0.7rem 1.5rem;
                width: 100%;
            }
            .form-actions {
                flex-direction: column;
            }
        }
        @media print {
            .site-header, .site-footer, .interactive-section, .hamburger, .search-form, .breadcrumb {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            a {
                color: #0056b3;
            }
            .container, article {
                max-width: 100%;
                padding: 0;
                box-shadow: none;
                border: none;
            }
        }
