        * {
            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.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #2c5aa0, #3a7bd5);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(44, 90, 160, 0.3);
            background: linear-gradient(135deg, #3a7bd5, #4a9ae9);
        }
        header {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2c5aa0;
            letter-spacing: -1px;
        }
        .logo span {
            color: #e63946;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            color: #444;
            padding: 8px 5px;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e63946;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #2c5aa0;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin-bottom: 15px;
        }
        .nav-mobile a {
            font-weight: 600;
            font-size: 1.1rem;
            color: #333;
            display: block;
            padding: 10px;
            border-radius: 8px;
        }
        .nav-mobile a:hover {
            background: #f0f5ff;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #f0f5ff;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #2c5aa0;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #999;
        }
        .hero {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 20px;
            text-align: center;
            border-radius: 20px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .hero h1 {
            font-size: 3rem;
            color: #1a3c7a;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #2c5aa0;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus {
            border-color: #2c5aa0;
        }
        .search-btn {
            background: linear-gradient(135deg, #e63946, #ff6b6b);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #ff6b6b, #ff8787);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        article h2 {
            color: #1a3c7a;
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e63946;
        }
        article h3 {
            color: #2c5aa0;
            font-size: 1.8rem;
            margin: 35px 0 20px;
        }
        article h4 {
            color: #444;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        article strong {
            color: #1a3c7a;
            font-weight: 700;
        }
        article em {
            background: #fff9e6;
            padding: 2px 5px;
            border-radius: 4px;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f7ff;
            border-left: 5px solid #2c5aa0;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 5px solid #e63946;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: #333;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: 700;
            color: #e63946;
        }
        .image-wrap {
            margin: 35px 0;
            text-align: center;
        }
        .image-wrap img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .player-quote {
            background: #fff9e6;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid #ffb347;
            position: relative;
        }
        .player-quote:before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 1.5rem;
            color: #ffb347;
        }
        .player-quote p {
            padding-left: 30px;
            font-size: 1.15rem;
            font-style: italic;
            color: #5a4a42;
        }
        .player-quote cite {
            display: block;
            padding-left: 30px;
            margin-top: 15px;
            font-weight: 600;
            color: #e63946;
        }
        aside {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: #1a3c7a;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.6rem;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .download-list {
            list-style: none;
        }
        .download-list li {
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s;
        }
        .download-list li:hover {
            transform: translateX(5px);
            background: #f0f5ff;
        }
        .download-list i {
            color: #2c5aa0;
            font-size: 1.3rem;
        }
        .interaction-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }
        .interaction-section h2 {
            color: #1a3c7a;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        .rating-widget {
            text-align: center;
            padding: 25px;
            background: #f9f9ff;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffed4e;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #444;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #2c5aa0;
            outline: none;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .web-links {
            background: #1a3c7a;
            padding: 50px 20px;
            margin-top: 50px;
            border-radius: 20px 20px 0 0;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        footer {
            background: #0d2b5c;
            color: #ccc;
            padding: 50px 20px 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: #e63946;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top {
                padding: 15px 0;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 30px;
                margin-bottom: 10px;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .content-wrapper {
                gap: 25px;
            }
        }
