        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #c92a2a;
            --accent-gold: #e6b325;
            --accent-blue: #0f4c75;
            --text-light: #f1f5f9;
            --text-gray: #94a3b8;
            --border-color: #334155;
            --card-bg: rgba(30, 41, 59, 0.7);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(22, 33, 62, 0.5) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(201, 42, 42, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--text-light);
            transform: scale(1.02);
        }
        .my-logo::before {
            content: "⚔️";
            font-size: 1.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.05);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 70%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 20px auto 10px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            color: var(--accent-gold);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 20px;
        }
        h2 {
            color: var(--accent-gold);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            color: var(--text-light);
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--text-gray);
            font-size: 1.2rem;
            margin: 25px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 15px;
        }
        .last-updated {
            background-color: rgba(201, 42, 42, 0.1);
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 600;
        }
        .last-updated i {
            color: var(--accent-red);
            margin-right: 8px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.005);
            box-shadow: 0 8px 25px rgba(201, 42, 42, 0.2);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -25px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .content-highlight {
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 76, 117, 0.8));
            border-left: 4px solid var(--accent-gold);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .content-highlight p {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        blockquote {
            border-left: 4px solid var(--accent-red);
            padding-left: 20px;
            margin: 30px 0;
            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: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: rgba(30, 41, 59, 0.9);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
        }
        .interactive-section {
            margin: 50px 0;
            padding: 30px;
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .interactive-title i {
            font-size: 1.8rem;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-light);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: rgba(30, 41, 59, 0.9);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(230, 179, 37, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }
        .rating {
            display: flex;
            gap: 10px;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .btn {
            background: linear-gradient(135deg, var(--accent-red), #a61e1e);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            background: linear-gradient(135deg, #d64545, var(--accent-red));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(201, 42, 42, 0.3);
        }
        .btn:active {
            transform: translateY(-1px);
        }
        .internal-links {
            margin: 40px 0;
            padding: 25px;
            background-color: rgba(30, 41, 59, 0.7);
            border-radius: 8px;
            border-left: 4px solid var(--accent-blue);
        }
        .internal-links h3 {
            margin-top: 0;
            color: var(--accent-blue);
        }
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .links-list a {
            background-color: rgba(15, 76, 117, 0.3);
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .links-list a:hover {
            background-color: rgba(15, 76, 117, 0.6);
            border-color: var(--accent-blue);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--secondary-dark);
            border-top: 1px solid var(--border-color);
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            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.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }
        .footer-links a i {
            width: 20px;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 15px 0;
        }
        friend-link a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--text-light);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-container {
                height: 70px;
            }
            .nav-links {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(22, 33, 62, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                border-bottom: 1px solid var(--border-color);
                backdrop-filter: blur(10px);
            }
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                width: 100%;
                border-radius: 0;
            }
            .nav-links a:hover {
                background-color: rgba(201, 42, 42, 0.1);
            }
            .nav-links a::after {
                display: none;
            }
            article {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            article {
                padding: 20px;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            .featured-image {
                max-height: 300px;
            }
            .interactive-section {
                padding: 20px;
            }
            .form-control {
                padding: 12px;
            }
        }
        .text-bold {
            font-weight: 800;
            color: var(--accent-gold);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .text-center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .py-3 {
            padding-top: 30px;
            padding-bottom: 30px;
        }
        .mb-4 {
            margin-bottom: 40px;
        }
