  /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* CSS Variables */
        :root {
            --raja-green: #006837;
            --raja-white: #FFFFFF;
            --raja-gold: #FFD700;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        /* Import Arabic Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Cairo:wght@200..1000&display=swap');

        /* Typography */
        body {
            font-family: 'Cairo', 'Noto Kufi Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        /* Specific Arabic text styling */
        .arabic-text, 
        .logo-text h1,
        .hero h2,
        .section-title,
        .nav-link,
        .news-title,
        .team-name,
        .footer-section h3 {
            font-family: 'Cairo', 'Noto Kufi Arabic', sans-serif;
            font-weight: 600;
        }

        /* Enhanced Arabic readability */
        .arabic-text {
            line-height: 1.8;
            letter-spacing: 0.02em;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--raja-green) 0%, #004d2b 100%);
            color: var(--raja-white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            margin-bottom: 0.2rem;
        }

        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: var(--raja-white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--raja-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .main {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 104, 55, 0.8), rgba(0, 104, 55, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23006837" width="1200" height="600"/><circle fill="%23FFD700" cx="600" cy="300" r="150" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            color: var(--raja-white);
            padding: 4rem 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background: var(--raja-gold);
            color: var(--text-dark);
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        /* Content Sections */
        .section {
            padding: 3rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--raja-green);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--raja-gold);
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* Cards */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: var(--raja-white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--raja-green);
            color: var(--raja-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .card h3 {
            color: var(--raja-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Match Results */
        .match-result {
            background: var(--raja-white);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .team {
            text-align: center;
        }

        .team-name {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .score {
            font-size: 2rem;
            font-weight: bold;
            color: var(--raja-green);
        }

        .vs {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .match-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* News Section */
        .news-item {
            background: var(--raja-white);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--raja-green);
        }

        .news-date {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-title {
            color: var(--raja-green);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* Player Cards */
        .players-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .player-card {
            background: var(--raja-white);
            border-radius: var(--border-radius);
            padding: 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
            text-align: center;
        }

        .player-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .player-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, var(--raja-green), #008a45);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--raja-white);
            font-size: 4rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }


        .player-jersey-number {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--raja-gold);
            color: var(--text-dark);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .player-info {
            padding: 1.5rem;
        }

        .player-name {
            color: var(--raja-green);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .player-position {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .player-stats {
            display: flex;
            justify-content: space-around;
            padding: 1rem 0;
            border-top: 1px solid #eee;
            margin-top: 1rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--raja-green);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 0.2rem;
        }

        /* Footer */
        .footer {
            background: var(--raja-green);
            color: var(--raja-white);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--raja-gold);
        }

        .footer-section a {
            color: var(--raja-white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--raja-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--raja-green);
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .match-teams {
                flex-direction: column;
                gap: 1rem;
            }

            .match-result {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Utilities */
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }

/* Crazy History UI */
.crazy-history {
    background: linear-gradient(135deg, #006837, #004d2b);
    color: white;
    padding: 5rem 0;
    position: relative;
}

.crazy-bg::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
    z-index: 0;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.crazy-content {
    position: relative;
    z-index: 2;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.history-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    position: relative;
}

.history-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.history-box h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.trophy-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    color: white;
    transition: transform 0.3s ease;
}

.trophy-item:hover {
    transform: scale(1.1) rotate(-2deg);
    background: rgba(255, 255, 255, 0.15);
}

.trophy-item span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #FFD700;
}


.crazy-history h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #FFD700;
}