        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6a00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #00205b, #be0027);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, gold, white);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .search-box {
            display: flex;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-box button {
            background: #ff6a00;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e55a00;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav {
            background: rgba(0, 32, 91, 0.95);
            margin-top: 1rem;
            border-radius: 8px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            display: block;
            color: white;
            padding: 15px 25px;
            font-weight: 600;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .main-nav a:hover {
            background: rgba(255, 106, 0, 0.8);
        }
        .main-nav li:last-child a {
            border-right: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff6a00;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        main {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.5rem;
            color: #00205b;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #ff6a00;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #be0027;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #00205b;
        }
        h3 {
            font-size: 1.5rem;
            color: #0056b3;
            margin: 1.5rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            padding: 20px;
            border-left: 5px solid gold;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .important {
            font-weight: 700;
            color: #be0027;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .content-links {
            display: inline-block;
            padding: 2px 6px;
            background: #e6f2ff;
            border-radius: 4px;
            margin: 0 3px;
        }
        .feature-img {
            width: 100%;
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .feature-img img {
            width: 100%;
            height: auto;
        }
        .interaction {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .interaction h3 {
            color: #00205b;
        }
        .rating-box, .comment-box {
            margin: 20px 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
        }
        form label {
            display: block;
            margin: 10px 0 5px;
            font-weight: 600;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        form button {
            background: #00205b;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        form button:hover {
            background: #ff6a00;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #be0027;
            padding-bottom: 8px;
            border-bottom: 2px solid #eee;
            margin-bottom: 15px;
        }
        .related-links li {
            list-style: none;
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }
        .related-links li:before {
            content: '⚽';
            position: absolute;
            left: 0;
        }
        .site-footer {
            background: #00205b;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-widget h4 {
            color: gold;
            margin-bottom: 20px;
        }
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: #ff6a00;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: rgba(255,255,255,0.1);
            margin: 5px 0;
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .main-nav ul {
                flex-direction: column;
                display: none;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            .search-box {
                width: 100%;
            }
        }
