:root {
            --primary: #0C2340; 
            --secondary: #BD9B60; 
            --accent: #C41E3A; 
            --light: #F5F5F5;
            --dark: #1A1A1A;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border-radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a6a 100%);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--secondary);
            text-transform: uppercase;
            position: relative;
            padding-left: 10px;
        }
        .my-logo::before {
            content: '⚾';
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.03);
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            padding: 0 22px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a0172e;
        }
        nav {
            background-color: rgba(12, 35, 64, 0.98);
            border-top: 1px solid rgba(189, 155, 96, 0.3);
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
        }
        .nav-desktop ul {
            display: flex;
            gap: 0;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            display: block;
            padding: 18px 24px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-desktop a:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary);
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        main {
            padding: 40px 0 60px;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 5px solid var(--secondary);
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent);
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            hyphens: auto;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            background: linear-gradient(90deg, rgba(189,155,96,0.1) 0%, transparent 100%);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 35px;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: var(--border-radius);
            border: 1px solid #ffecb3;
            margin: 30px 0;
        }
        .highlight strong {
            color: var(--accent);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .featured-image {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent);
        }
        .content-link:hover {
            color: var(--primary);
            border-bottom-style: solid;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.12);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .stat-label {
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            line-height: 1.6;
            color: var(--primary);
            padding: 30px 40px;
            margin: 40px 0;
            background: linear-gradient(90deg, var(--light) 0%, #f0f0f0 100%);
            border-radius: var(--border-radius);
            border-left: 6px solid var(--secondary);
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 5rem;
            color: rgba(189, 155, 96, 0.3);
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .author {
            text-align: right;
            font-weight: 600;
            color: var(--accent);
            margin-top: 15px;
        }
        .interactive-section {
            background: var(--light);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 50px 0;
            box-shadow: var(--shadow);
        }
        .interactive-section h3 {
            text-align: center;
            color: var(--primary);
        }
        .rating-form, .comment-form {
            max-width: 700px;
            margin: 30px auto;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 25px 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }
        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(189, 155, 96, 0.25);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary), #1a3a6a);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a3a6a, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.15);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            padding: 12px 18px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--secondary);
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                max-width: 300px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .search-box {
                max-width: 100%;
            }
            h1 { font-size: 2rem; padding-left: 15px; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.4rem; }
            .intro, .highlight, .interactive-section {
                padding: 20px;
            }
            .quote {
                padding: 20px 25px;
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars label {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 { font-size: 1.8rem; }
            .submit-btn {
                width: 100%;
            }
        }
        @media print {
            header, footer, .interactive-section, .breadcrumb, .hamburger {
                display: none;
            }
            body {
                color: black;
                background: white;
                font-size: 12pt;
                line-height: 1.4;
            }
            h1, h2, h3, h4 {
                color: black;
                page-break-after: avoid;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .content-link::after {
                content: " (" attr(href) ")";
                font-size: 0.9em;
                color: #666;
            }
        }
