        * { 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: #2c3e50;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #ffffff 0%, #f1f8ff 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #2980b9; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #1a5276; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #1a3c5e;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            border-bottom: 4px solid #e67e22;
            padding-bottom: 0.5rem;
            text-align: center;
        }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #2c5282; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #2d3748; }
        h4 { font-size: 1.3rem; color: #4a5568; }
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            color: #5a6c7d;
            margin-bottom: 2rem;
            text-align: center;
            font-style: italic;
        }
        strong { color: #1a5276; font-weight: 700; }
        .last-updated {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: right;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #bdc3c7;
        }
        .site-header {
            background: linear-gradient(135deg, #1a3c5e 0%, #2c5282 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .my-logo {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2rem;
            font-weight: bold;
            color: #f39c12;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover { color: #e67e22; text-decoration: none; }
        .my-logo i { font-size: 2.2rem; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            color: #ecf0f1;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: #edf2f7;
            border-radius: 6px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2d3748; }
        .breadcrumb .separator { margin: 0 0.5rem; color: #a0aec0; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr minmax(300px, 0.35fr);
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem auto;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .content-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .strategy-note {
            background: linear-gradient(to right, #fff9e6, #fff0cc);
            border-left: 5px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .player-quote {
            font-size: 1.1rem;
            color: #2d3748;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            margin: 2rem 0;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 4rem;
            color: #bdc3c7;
            position: absolute;
            top: -1rem;
            left: 0.5rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 7rem;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #1a3c5e;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #e2e8f0;
        }
        .related-links li:last-child { border-bottom: none; }
        .interactive-form {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #cfe2ff;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3748;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #2c5282, #1a3c5e);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to right, #1a3c5e, #2c5282);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-decoration: none;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f39c12;
            margin-bottom: 1rem;
        }
        .rating-stars i { cursor: pointer; transition: transform 0.2s; }
        .rating-stars i:hover { transform: scale(1.2); }
        footer {
            background: linear-gradient(135deg, #1a3c5e 0%, #0f253f 100%);
            color: #ecf0f1;
            padding: 3rem 1rem 1.5rem;
            margin-top: 4rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #f39c12;
            border-bottom: 2px solid #3498db;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c5282;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2c5282;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active { display: flex; }
            article, aside { padding: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .my-logo { margin-bottom: 1rem; }
        }
