        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        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, var(--primary), #1e40af);
            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;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }
        .logo i {
            color: var(--accent);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 10px 15px;
            outline: none;
            font-size: 0.95rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #b91c1c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        nav ul li a {
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav ul li a:hover, nav ul li a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-size: 2rem;
            padding-left: 10px;
            border-left: 5px solid var(--secondary);
        }
        h3 {
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            background: #e0f2fe;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 5px solid var(--primary);
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px dashed var(--accent);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .group-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .group-card {
            background: #f1f5f9;
            border-radius: 10px;
            padding: 1.5rem;
            border-top: 5px solid var(--secondary);
            transition: var(--transition);
        }
        .group-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .group-card h3 {
            color: var(--secondary);
            text-align: center;
            margin-bottom: 1rem;
        }
        .group-card ul {
            list-style: none;
        }
        .group-card li {
            padding: 8px 0;
            border-bottom: 1px dashed #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .group-card li:before {
            content: "⚽";
            font-size: 0.9em;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .schedule-table th, .schedule-table td {
            border: 1px solid #e2e8f0;
            padding: 15px;
            text-align: center;
        }
        .schedule-table th {
            background: var(--primary);
            color: white;
            font-weight: 600;
        }
        .schedule-table tr:nth-child(even) {
            background: #f8fafc;
        }
        .schedule-table tr:hover {
            background: #e0f2fe;
        }
        .match-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }
        .match-time {
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 600;
            min-width: 120px;
            text-align: center;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .interactive-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background: #1e40af;
            transform: scale(1.05);
        }
        .btn-secondary {
            background: var(--secondary);
            color: white;
        }
        .btn-secondary:hover {
            background: #b91c1c;
            transform: scale(1.05);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        .internal-links {
            background: #f0f9ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .internal-links ul {
            columns: 2;
            list-style: none;
        }
        .internal-links li {
            margin-bottom: 10px;
            padding-left: 1.5rem;
            position: relative;
        }
        .internal-links li:before {
            content: "🔗";
            position: absolute;
            left: 0;
        }
        .internal-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .interaction-section {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-top: 3rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .interaction-section h2 {
            text-align: center;
            border: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .form-box {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }
        .form-box h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #cbd5e1;
            cursor: pointer;
            padding: 0 3px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #b91c1c;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #334155;
        }
        friend-link h4 {
            color: white;
            margin-bottom: 1rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
        }
        friend-link li a {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 15px;
            border-radius: 5px;
            display: block;
        }
        friend-link li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .group-grid { grid-template-columns: repeat(2, 1fr); }
            .internal-links ul { columns: 1; }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            .search-box {
                width: 100%;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav ul {
                flex-direction: column;
                display: none;
                gap: 0;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li a {
                padding: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .group-grid { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .match-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .match-time { align-self: flex-end; }
            article { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .lead { font-size: 1.1rem; padding: 15px; }
            .interactive-btns { justify-content: center; }
            .btn { width: 100%; justify-content: center; }
        }
