* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background-color: #0a0a0a; /* أسود داكن */
      color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #1a1a1a;
    }
    ::-webkit-scrollbar-thumb {
      background: #00A055;
      border-radius: 10px;
    }

    /* Navbar */
    .navbar {
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      padding: 0.8rem 2rem;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 160, 85, 0.4);
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.7rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #ffffff, #00A055);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }
    .navbar-brand i {
      color: #00A055;
      background: none;
      font-size: 1.8rem;
      margin-left: 8px;
    }
    .nav-link {
      font-weight: 600;
      margin: 0 6px;
      transition: 0.3s;
      color: #dddddd !important;
      position: relative;
    }
    .nav-link:hover, .nav-link.active {
      color: #00A055 !important;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      right: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, #00A055, #ffffff);
      transition: 0.3s;
    }
    .nav-link:hover::after {
      width: 100%;
    }

    /* Hero Section */

    .hero-title {
      font-size: 4.2rem;
      font-weight: 800;
      text-shadow: 3px 3px 15px rgba(0,0,0,0.5);
      animation: fadeInUp 1s ease;
    }
    .hero-title span {
      color: #00A055;
    }
    .hero-sub {
      font-size: 1.2rem;
      border-right: 4px solid #00A055;
      padding-right: 1rem;
      margin-top: 1rem;
      font-weight: 500;
      color: #e0e0e0;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .btn-primary-custom {
      background: linear-gradient(45deg, rgb(0, 180, 95), rgb(0, 140, 75));
      border: none;
      padding: 12px 32px;
      font-weight: 700;
      border-radius: 50px;
      color: #ffffff;
      transition: all 0.3s;
      box-shadow: 0 5px 15px rgba(0, 160, 85, 0.4);
    }
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 160, 85, 0.6);
      color: white;
    }
    .section-title {
      position: relative;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 3rem;
      display: inline-block;
      color: #ffffff;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      right: 0;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #00A055, #ffffff);
      border-radius: 2px;
    }
    /* Cards */
    .player-card, .news-card, .match-card {
      background: #111111;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid rgba(255,255,255,0.08);
      height: 100%;
    }
    .player-card:hover, .news-card:hover, .match-card:hover {
      transform: translateY(-8px);
      border-color: #00A055;
      box-shadow: 0 20px 30px -12px rgba(0, 160, 85, 0.4);
    }
    .player-img {
      height: 280px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .player-card:hover .player-img {
      transform: scale(1.03);
    }
    .player-info {
      padding: 1.2rem;
      text-align: center;
    }
    .player-name {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: #ffffff;
    }
    .player-pos {
      color: #00A055;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }
    .badge-match {
      background: #00A055;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 40px;
    }
    .match-date {
      font-size: 0.85rem;
      color: #bbbbbb;
    }
    .result-score {
      font-size: 1.6rem;
      font-weight: 800;
      color: #00A055;
    }
    .bg-darker {
      background-color: #050505;
    }
    .social-icon {
      background: #1f1f1f;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      font-size: 1.3rem;
      color: #00A055;
      margin-left: 12px;
      text-decoration: none;
    }
    .social-icon:hover {
      background: #00A055;
      color: white;
      transform: translateY(-5px);
    }
    footer {
      background: #000000;
      border-top: 1px solid rgba(0, 160, 85, 0.3);
    }
    .contact-icon {
      font-size: 1.6rem;
      color: #00A055;
      margin-left: 12px;
    }
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }
      .navbar {
        padding: 0.5rem 1rem;
      }
      .section-title {
        font-size: 2rem;
      }
    }
    .glass-card {
      background: rgba(17, 17, 17, 0.9);
      backdrop-filter: blur(8px);
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .btn-outline-custom {
      border: 1px solid #00A055;
      color: #00A055;
      border-radius: 40px;
      font-weight: 600;
      background: transparent;
    }
    .btn-outline-custom:hover {
      background: #00A055;
      color: white;
    }
    .text-secondary-custom {
      color: #cccccc !important;
    }
    .form-control.bg-dark {
      background-color: #1a1a1a !important;
      border: 1px solid #333;
      color: white;
    }
    .form-control.bg-dark:focus {
      background-color: #222;
      border-color: #00A055;
      box-shadow: none;
    }
 