        * { 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.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #2a7de1; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #f39c12; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.03); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            font-size: 1.05rem;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 8px rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: #e9f2fa;
            font-size: 0.95rem;
            border-bottom: 1px solid #d0e3f5;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #1a2980; }
        .breadcrumb span { color: #888; }
        .main-container {
            max-width: 1300px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a2980;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #f39c12;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #26d0ce;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e4edf5;
        }
        h3 {
            font-size: 1.6rem;
            color: #2a7de1;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.25rem;
            color: #444;
            background: #f9fdfe;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #26d0ce;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fffbcc 0%, #fffbcc 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #ffeaa7;
            margin: 2rem 0;
        }
        .player-quote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #f39c12;
            padding-left: 1.5rem;
            margin: 2rem 0;
            background: #fef9e7;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            background: #1a2980;
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stat-item { text-align: center; }
        .stat-number { font-size: 2.5rem; font-weight: bold; color: #FFD700; }
        .stat-label { font-size: 0.9rem; opacity: 0.9; }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dotted #2a7de1;
            padding-bottom: 1px;
        }
        .content-link:hover { border-bottom-style: solid; }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #1a2980;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #26d0ce;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1rem; border-left: 3px solid #e4edf5; }
        .link-list a:hover { color: #f39c12; border-bottom: 1px solid; }
        .search-box, .comment-form, .rating-form {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #26d0ce;
            outline: none;
            box-shadow: 0 0 5px rgba(38, 208, 206, 0.5);
        }
        button, .btn {
            background: linear-gradient(90deg, #f39c12, #e67e22);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #e67e22, #d35400);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
        }
        .star-rating { direction: rtl; display: inline-block; }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            padding: 0 2px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #FFD700; }
        footer {
            background: #1a2980;
            color: #ccc;
            padding: 2rem 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #26d0ce;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255,255,255,0.2); }
        friend-link a { color: #fff; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, .main-nav a { padding: 1.5rem; }
        }
