        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #e63946;
            --accent-gold: #fca311;
            --text-light: #f1faee;
            --text-gray: #a8dadc;
            --card-bg: rgba(255, 255, 255, 0.05);
            --transition: all 0.3s ease;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-red);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 var(--accent-red);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--text-light);
            transform: scale(1.03);
        }
        .my-logo span {
            color: var(--accent-red);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            margin: 4px 0;
            border-radius: 5px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: var(--transition);
            position: relative;
        }
        nav a:hover, nav a.active {
            color: var(--accent-gold);
            background-color: rgba(252, 163, 17, 0.1);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        nav a:hover::after { width: 80%; }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--accent-gold);
        }
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
        }
        .breadcrumb a:hover { color: var(--accent-gold); }
        .breadcrumb li:last-child a { color: var(--accent-gold); font-weight: bold; }
        .search-container {
            max-width: 600px;
            margin: 30px auto 40px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--accent-red);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            color: var(--primary-dark);
        }
        .search-input:focus { outline: none; }
        .search-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-button:hover { background-color: #c1121f; }
        main { padding-bottom: 50px; }
        article {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            border: 1px solid rgba(252, 163, 17, 0.2);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 20px;
        }
        .last-updated {
            text-align: center;
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 40px;
            font-size: 0.95rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--text-light);
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(230, 57, 70, 0.5);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.8em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: var(--text-gray);
            background-color: rgba(22, 33, 62, 0.6);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-gold);
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(252, 163, 17, 0.15);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border-left: 5px solid var(--accent-red);
        }
        .highlight p:last-child { margin-bottom: 0; }
        em { color: var(--accent-gold); font-style: italic; }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
            background-color: rgba(252, 163, 17, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
        }
        a.content-link {
            color: #4cc9f0;
            text-decoration: underline;
            transition: var(--transition);
        }
        a.content-link:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        img.responsive-img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 3px solid var(--accent-red);
            transition: transform 0.5s ease;
        }
        img.responsive-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 4px solid var(--accent-red);
            padding-left: 25px;
            margin: 35px 0 35px 30px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 1.2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.07);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid rgba(252, 163, 17, 0.3);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-red);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        .stat-card h4 { margin-top: 0; color: var(--text-light); }
        .stat-card p { margin-bottom: 0; font-size: 1rem; }
        .user-interaction {
            background-color: rgba(22, 33, 62, 0.8);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 50px 0;
            border: 1px solid var(--accent-gold);
        }
        .interaction-title {
            color: var(--accent-gold);
            margin-bottom: 30px;
            text-align: center;
            font-size: 2rem;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label {
            margin-bottom: 8px;
            color: var(--text-gray);
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .submit-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
        }
        footer {
            background-color: var(--primary-dark);
            border-top: 3px solid var(--accent-red);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(252, 163, 17, 0.3);
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background: rgba(252, 163, 17, 0.1);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            border: 1px solid var(--accent-gold);
            transition: var(--transition);
        }
        friend-link a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
        }
        friend-link:hover {
            background-color: rgba(230, 57, 70, 0.2);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary-dark);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
                transition: 0.3s;
                z-index: 999;
                gap: 0;
            }
            nav ul.active { left: 0; }
            nav ul li { margin: 15px 0; }
            nav a { font-size: 1.2rem; padding: 12px 20px; display: block; }
            .header-container { padding: 12px 0; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .intro, .highlight { padding: 20px; }
            .stats-grid { grid-template-columns: 1fr; }
            .user-interaction { padding: 30px 20px; }
            .star-rating label { font-size: 2rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .search-input { padding: 15px 20px; }
            .search-button { padding: 0 25px; }
            article { padding: 20px; }
        }
