        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --primary: #1a5c2a;
            --primary-dark: #0e3d1a;
            --accent: #ff9933;
            --accent-light: #ffb366;
            --secondary: #138808;
            --dark: #1a1a2e;
            --light: #f5f7fa;
            --white: #ffffff;
            --gray: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 10px 15px rgba(0,0,0,0.05);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #2d3748;
            background: var(--light);
            line-height: 1.75;
            font-size: 16px;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, ol { list-style-position: inside; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            padding: 12px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 32px;
        }
        .my-logo span {
            background: linear-gradient(90deg, var(--accent), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav a {
            color: rgba(255,255,255,0.9);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition);
        }
        .nav a:hover {
            background: rgba(255,255,255,0.15);
            color: var(--accent-light);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }
        .breadcrumb {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: 14px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px;
        }
        .breadcrumb li::after {
            content: "›";
            margin-left: 6px;
            color: var(--gray);
        }
        .breadcrumb li:last-child::after { display: none; }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb .current { color: var(--gray); }
        .hero {
            background: linear-gradient(135deg, #0f2b1c 0%, #1a5c2a 50%, #138808 100%);
            color: var(--white);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "⚽";
            font-size: 180px;
            position: absolute;
            right: 30px;
            bottom: -20px;
            opacity: 0.15;
            transform: rotate(-15deg);
        }
        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 16px;
            font-weight: 900;
        }
        .hero p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 24px;
        }
        .hero-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }
        .hero-badge span {
            background: rgba(255,255,255,0.15);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
        }
        .search-box {
            background: var(--white);
            border-radius: 50px;
            padding: 6px;
            display: flex;
            max-width: 500px;
            margin-top: 24px;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            font-size: 15px;
            background: transparent;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            border: none;
            border-radius: 50px;
            padding: 12px 24px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover { background: var(--primary); }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            padding: 48px 0;
        }
        .main-content {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        h1 { font-size: 38px; margin-bottom: 16px; color: var(--dark); line-height: 1.2; }
        h2 { font-size: 28px; margin: 48px 0 16px; color: var(--primary); font-weight: 800; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
        h3 { font-size: 22px; margin: 32px 0 12px; color: var(--dark); font-weight: 700; }
        h4 { font-size: 18px; margin: 24px 0 8px; color: var(--primary); font-weight: 600; }
        p { margin-bottom: 16px; }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .feature-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 24px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .feature-card i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .feature-card h4 { color: var(--dark); }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }
        .stat-box {
            text-align: center;
            background: var(--light);
            padding: 30px 16px;
            border-radius: var(--radius);
            border-bottom: 3px solid var(--secondary);
        }
        .stat-box .number {
            font-size: 40px;
            font-weight: 900;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        .stat-box .label {
            font-size: 14px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        .quote-block {
            background: linear-gradient(135deg, #f0fdf4, #e6f7ec);
            border-left: 4px solid var(--secondary);
            padding: 24px 28px;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            margin: 32px 0;
            position: relative;
        }
        .quote-block::before {
            content: '"';
            font-size: 60px;
            color: var(--secondary);
            position: absolute;
            top: -10px;
            left: 12px;
            font-family: Georgia, serif;
            opacity: 0.3;
        }
        .quote-block .author {
            display: block;
            margin-top: 12px;
            font-weight: 600;
            font-style: normal;
            font-size: 14px;
        }
        .custom-list {
            list-style: none;
            margin: 20px 0;
        }
        .custom-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border);
            display: flex;
            align-items: start;
            gap: 10px;
        }
        .custom-list li::before {
            content: "⚽";
            font-size: 14px;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 14px;
        }
        .game-table th {
            background: var(--primary);
            color: var(--white);
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }
        .game-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border);
        }
        .game-table tr:nth-child(even) { background: #f9fafb; }
        .game-table tr:hover { background: #f0fdf4; }
        .accordion {
            margin: 16px 0;
        }
        .accordion-item {
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .accordion-header {
            background: var(--white);
            padding: 16px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-header:hover { background: #f0fdf4; }
        .accordion-header i { transition: var(--transition); color: var(--primary); }
        .accordion-content {
            padding: 16px 20px;
            background: #fafbfc;
            border-top: 1px solid var(--border);
            display: none;
        }
        .accordion-item.active .accordion-content { display: block; }
        .accordion-item.active .accordion-header i { transform: rotate(180deg); }
        .testimonial-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 24px;
            margin: 16px 0;
            border-left: 4px solid var(--accent);
        }
        .testimonial-card .rating {
            color: #f59e0b;
            margin-bottom: 8px;
        }
        .testimonial-card .user {
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
        }
        .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 4px;
            font-size: 28px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d1d5db;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f59e0b;
        }
        .comment-form {
            background: var(--light);
            padding: 24px;
            border-radius: var(--radius);
            margin: 24px 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            min-height: 100px;
            font-family: inherit;
            font-size: 14px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
        }
        .comment-form label {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover { background: var(--secondary); transform: translateY(-2px); }
        .sidebar h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .sidebar ul { list-style: none; }
        .sidebar ul li { margin-bottom: 8px; }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border-radius: 6px;
            font-size: 14px;
            color: var(--dark);
            transition: var(--transition);
        }
        .sidebar ul li a:hover {
            background: #f0fdf4;
            color: var(--primary);
            padding-left: 14px;
        }
        .sidebar ul li a i { color: var(--accent); font-size: 12px; }
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.8);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }
        .footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
        .footer a:hover { color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
        }
        .footer-bottom .copyright { display: block; margin-bottom: 8px; }
        .footer-bottom a { color: var(--accent); }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 24px;
            font-size: 14px;
        }
        friend-link h4 {
            color: var(--white) !important;
            font-size: 16px;
            margin-bottom: 12px;
        }
        friend-link a {
            display: block;
            padding: 4px 0;
        }
        .back-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            z-index: 999;
            opacity: 0.8;
            transition: var(--transition);
        }
        .back-top:hover {
            background: var(--secondary);
            opacity: 1;
            transform: translateY(-4px);
        }
        .hero-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 32px 0;
            box-shadow: var(--shadow);
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .hero h1 { font-size: 34px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav {
                display: flex;
                flex-direction: column;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            .nav.active { max-height: 400px; }
            .header-inner { gap: 10px; }
            .my-logo { font-size: 22px; }
            .hero { padding: 40px 0; }
            .hero h1 { font-size: 28px; }
            .main-content { padding: 24px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr; }
            .feature-grid { grid-template-columns: 1fr; }
            .main-content { padding: 16px; }
            .hero h1 { font-size: 24px; }
            .hero p { font-size: 16px; }
        }
