        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: white;
            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;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo a i {
            margin-right: 10px;
            color: #ffdd59;
        }
        .my-logo {
            font-style: italic;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .nav-desktop {
            display: flex;
            list-style: none;
        }
        .nav-desktop li {
            margin-left: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e3799;
            padding: 20px;
            list-style: none;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile li {
            margin: 10px 0;
        }
        .nav-mobile a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #e8f4fd;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1 {
            color: #0c2461;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #ff6b6b;
            padding-left: 15px;
        }
        h2 {
            color: #1a73e8;
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            color: #333;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1a73e8;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-links {
            background-color: #f1f8ff;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .content-links ul {
            list-style-type: none;
            columns: 2;
        }
        .content-links li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .content-links li:before {
            content: '🏏';
            position: absolute;
            left: 0;
        }
        .interactive-section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(to right, #f8f9fa, #e8f4fd);
            border-radius: 12px;
            border: 1px solid #d1e3ff;
        }
        .interactive-section h3 {
            margin-top: 0;
            color: #0c2461;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #1a73e8;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
        }
        button {
            background: linear-gradient(to right, #1a73e8, #0c2461);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        button:hover {
            background: linear-gradient(to right, #0d47a1, #0a1931);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        button i {
            margin-right: 8px;
        }
        .rating {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        .rating span {
            margin-right: 15px;
            font-weight: 600;
        }
        .stars {
            display: flex;
            direction: row;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            margin-right: 5px;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffc107;
        }
        footer {
            background-color: #0c2461;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffdd59;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: padding-left 0.3s;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        friend-link a {
            color: #ffdd59;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .content-links ul { columns: 1; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 12px 15px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            article { padding: 25px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .lead { font-size: 1.1rem; }
            .footer-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            article { padding: 20px; }
            h1 { font-size: 1.8rem; }
            .interactive-section { padding: 20px; }
        }
