        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-gold: #FFD700;
            --secondary-red: #DC2626;
            --accent-green: #10B981;
            --dark-bg: #0F172A;
            --card-bg: #1E293B;
            --text-light: #F1F5F9;
            --text-muted: #94A3B8;
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-green);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-gold);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-gold), #ffed4e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--primary-gold);
            border-radius: 50px 0 0 50px;
            background: var(--card-bg);
            color: var(--text-light);
            outline: none;
        }
        .search-form button {
            background: linear-gradient(90deg, var(--primary-gold), #e6c200);
            color: var(--dark-bg);
            border: none;
            padding: 12px 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent-green);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-gold);
        }
        nav ul {
            display: flex;
            list-style: none;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        nav li {
            flex: 1;
        }
        nav a {
            display: block;
            padding: 18px 25px;
            text-align: center;
            font-weight: 600;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }
        nav a:last-child {
            border-right: none;
        }
        nav a:hover {
            background: linear-gradient(90deg, var(--secondary-red), #b91c1c);
            color: white;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a:not(:last-child)::after {
            content: " » ";
            margin: 0 8px;
            color: var(--primary-gold);
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.1);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: var(--primary-gold);
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.4rem;
            margin: 45px 0 25px;
            color: var(--accent-green);
            border-left: 5px solid var(--secondary-red);
            padding-left: 20px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 20px;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--text-muted);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: var(--primary-gold);
            font-weight: 600;
            text-align: center;
            margin: 30px auto;
            max-width: 900px;
            line-height: 1.5;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(220, 38, 38, 0.15), transparent);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-red);
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid var(--primary-gold);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-gold);
            display: block;
            line-height: 1;
        }
        .image-container {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            border: 3px solid var(--primary-gold);
        }
        .featured-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.03);
        }
        .quote {
            font-style: italic;
            font-size: 1.4rem;
            color: var(--accent-green);
            border-left: 5px solid var(--accent-green);
            padding-left: 25px;
            margin: 40px 0 40px 20px;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--text-muted);
            margin-top: 10px;
        }
        .interaction-module {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .module-title {
            color: var(--accent-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .module-title i {
            font-size: 1.8rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2.5rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--primary-gold);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid var(--text-muted);
            background: var(--dark-bg);
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
        }
        .btn-submit {
            background: linear-gradient(90deg, var(--accent-green), #0da271);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }
        .btn-submit:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        footer {
            background: var(--dark-bg);
            border-top: 2px solid var(--primary-gold);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--primary-gold);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 215, 0, 0.05);
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-green);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(16, 185, 129, 0.1);
            border-left-color: var(--primary-gold);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--text-muted);
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: var(--accent-green);
            margin-top: 20px;
            font-style: italic;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .header-top { flex-wrap: wrap; }
            .search-form { width: 100%; order: 3; margin-top: 20px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                border-radius: 10px;
            }
            nav ul.active { display: flex; }
            nav li { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            article { padding: 25px; }
            .lead { font-size: 1.2rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            .my-logo { font-size: 1.8rem; }
            .stat-number { font-size: 2.2rem; }
            .rating-stars label { font-size: 2rem; }
        }
