
  :root {
    --red: #CC0000;
    --red-bright: #FF1111;
    --red-dark: #8B0000;
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --white: #F5F5F5;
    --gray: #888888;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Tajawal', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(204,0,0,0.3);
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: all 0.3s;
  }

  nav.scrolled { background: rgba(10,10,10,0.99); border-bottom-color: var(--red); }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo img { height: 45px; filter: drop-shadow(0 0 10px rgba(204,0,0,0.5)); }

  .nav-logo-text {
    font-family: 'Cairo', sans-serif;
    font-size: 18px; font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
  }

  .nav-logo-text span { color: var(--red); }

  .nav-links {
    display: flex; gap: 30px; list-style: none;
  }

  .nav-links a {
    color: var(--gray); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* HERO */
  .hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(204,0,0,0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 0% 100%, rgba(139,0,0,0.15) 0%, transparent 50%),
      linear-gradient(180deg, #0A0A0A 0%, #150000 50%, #0A0A0A 100%);
  }

  /* animated particles */
  .particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }

  .particle {
    position: absolute; border-radius: 50%;
    background: var(--red);
    animation: float linear infinite;
    opacity: 0;
  }

  @keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-block;
    border: 1px solid rgba(212,175,55,0.5);
    color: var(--gold);
    font-size: 12px; font-weight: 700;
    letter-spacing: 4px;
    padding: 6px 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { border-color: rgba(212,175,55,0.5); box-shadow: none; }
    50% { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,0.3); }
  }

  .hero-logo {
    width: 160px; height: 160px;
    margin: 0 auto 30px;
    position: relative;
  }

  .hero-logo img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(204,0,0,0.8))
            drop-shadow(0 0 60px rgba(204,0,0,0.4));
    animation: logoFloat 4s ease-in-out infinite;
  }

  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-ring {
    position: absolute; inset: -20px;
    border: 2px solid rgba(204,0,0,0.3);
    border-radius: 50%;
    animation: spin 8s linear infinite;
  }

  .hero-ring::before {
    content: '';
    position: absolute; top: -4px; left: 50%;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-left: -4px;
    box-shadow: 0 0 15px var(--red);
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF4444 50%, #CC0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }

  .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 300;
  }

  .hero-stats {
    display: flex; gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-num {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    display: block;
  }

  .hero-stat-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
  }

  .hero-divider {
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.1);
    align-self: center;
  }

  .scroll-hint {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    color: var(--gray); font-size: 11px;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
  }

  .scroll-hint::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* SECTIONS */
  section { padding: 100px 40px; }

  .section-header {
    text-align: center; margin-bottom: 70px;
  }

  .section-tag {
    display: inline-block;
    color: var(--red); font-size: 11px;
    letter-spacing: 4px; font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .section-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
  }

  .section-line {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--red), var(--gold));
    margin: 20px auto 0;
    border-radius: 2px;
  }

  /* TROPHIES SECTION */
  #trophies { background: var(--dark); }

  .trophies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px; margin: 0 auto;
  }

  .trophy-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }

  .trophy-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(204,0,0,0.08), transparent);
    opacity: 0; transition: opacity 0.3s;
  }

  .trophy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(204,0,0,0.4);
    box-shadow: 0 20px 60px rgba(204,0,0,0.2);
  }

  .trophy-card:hover::before { opacity: 1; }

  .trophy-card.featured {
    border-color: rgba(212,175,55,0.3);
    background: linear-gradient(135deg, rgba(212,175,55,0.05), var(--dark2));
  }

  .trophy-card.featured:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
  }

  .trophy-img {
    width: 70px; height: 70px;
    object-fit: contain;
    margin: 0 auto 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    transition: transform 0.3s;
  }

  .trophy-card:hover .trophy-img { transform: scale(1.1) rotate(-3deg); }

  .trophy-count {
    font-family: 'Cairo', sans-serif;
    font-size: 52px; font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .trophy-card.featured .trophy-count {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .trophy-name {
    font-size: 14px; color: var(--gray);
    font-weight: 500; line-height: 1.4;
  }

  .total-bar {
    max-width: 600px; margin: 60px auto 0;
    text-align: center;
    background: var(--dark2);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 30px 40px;
  }

  .total-bar-num {
    font-family: 'Cairo', sans-serif;
    font-size: 80px; font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    text-shadow: 0 0 40px rgba(212,175,55,0.3);
  }

  .total-bar-label {
    font-size: 14px; color: var(--gray);
    letter-spacing: 3px; margin-top: 8px;
  }

  /* LEGENDS */
  #legends { background: var(--black); }

  .legends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px; margin: 0 auto;
  }

  .legend-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
  }

  .legend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(204,0,0,0.25);
    border-color: rgba(204,0,0,0.3);
  }

  .legend-header {
    padding: 35px 30px 25px;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--dark3) 100%);
    position: relative;
    overflow: hidden;
  }

  .legend-header::after {
    content: '';
    position: absolute; top: -30px; left: -30px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .legend-number {
    font-family: 'Cairo', sans-serif;
    font-size: 80px; font-weight: 900;
    color: rgba(255,255,255,0.07);
    position: absolute; top: -5px; left: 20px;
    line-height: 1;
  }

  .legend-pos {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--white); font-size: 10px;
    letter-spacing: 2px; padding: 4px 12px;
    border-radius: 20px; margin-bottom: 12px;
  }

  .legend-name {
    font-family: 'Cairo', sans-serif;
    font-size: 22px; font-weight: 900;
    line-height: 1.2;
  }

  .legend-years {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-top: 6px;
  }

  .legend-body { padding: 25px 30px; }

  .legend-bio {
    font-size: 14px; color: var(--gray);
    line-height: 1.8; margin-bottom: 20px;
  }

  .legend-stats {
    display: flex; gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
  }

  .legend-stat {
    flex: 1; text-align: center;
  }

  .legend-stat-num {
    font-family: 'Cairo', sans-serif;
    font-size: 24px; font-weight: 900;
    color: var(--red);
    display: block;
  }

  .legend-stat-label {
    font-size: 10px; color: var(--gray);
    letter-spacing: 1px;
  }

  /* HISTORY TIMELINE */
  #history { background: var(--dark); }

  .timeline {
    max-width: 900px; margin: 0 auto;
    position: relative;
    padding: 0 20px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 50%; 
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--red), var(--gold), var(--red), transparent);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0; margin-bottom: 50px;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
  }

  .timeline-item.visible {
    opacity: 1; transform: translateY(0);
  }

  .timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-left: 0; padding-right: 40px; }
  .timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; padding-right: 0; padding-left: 40px; }
  .timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

  .timeline-dot {
    grid-column: 2;
    grid-row: 1;
    display: flex; align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
  }

  .timeline-dot-inner {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--black);
    box-shadow: 0 0 0 2px var(--red), 0 0 20px rgba(204,0,0,0.5);
    flex-shrink: 0;
  }

  .timeline-year {
    font-family: 'Cairo', sans-serif;
    font-size: 32px; font-weight: 900;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }

  .timeline-event {
    font-size: 16px; font-weight: 700;
    margin-bottom: 8px;
  }

  .timeline-desc {
    font-size: 13px; color: var(--gray);
    line-height: 1.7;
  }

  /* CHART SECTION */
  #stats { background: var(--black); }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px; margin: 0 auto;
  }

  .chart-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
  }

  .chart-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px; font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
  }

  /* GALLERY */
  #gallery { background: var(--dark); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
    max-width: 1200px; margin: 0 auto;
  }

  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--dark3);
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.8);
  }

  .gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
  }

  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(204,0,0,0.6), transparent);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end;
    padding: 20px;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-label {
    font-size: 13px; font-weight: 600;
    color: var(--white);
  }

  /* FANS SECTION */
  #fans { background: var(--black); }

  .fans-intro {
    max-width: 700px; margin: 0 auto 50px;
    text-align: center;
    font-size: 16px; color: var(--gray);
    line-height: 1.9;
  }

  .fans-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px; margin: 0 auto 50px;
  }

  .fan-msg {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-right: 3px solid var(--red);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s;
  }

  .fan-msg:hover { transform: translateX(-5px); }

  .fan-msg-text {
    font-size: 15px; line-height: 1.8;
    margin-bottom: 15px;
    color: var(--white);
  }

  .fan-msg-author {
    font-size: 12px; color: var(--red);
    font-weight: 700; letter-spacing: 1px;
  }

  .fan-form {
    max-width: 600px; margin: 0 auto;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px;
  }

  .fan-form h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 20px; font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
  }

  .form-group { margin-bottom: 16px; }

  .form-group input,
  .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--gray); }

  .btn-submit {
    width: 100%; padding: 15px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border: none; border-radius: 10px;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 16px; font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
  }

  .btn-submit:hover {
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    box-shadow: 0 10px 30px rgba(204,0,0,0.4);
    transform: translateY(-2px);
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(204,0,0,0.2);
    padding: 60px 40px 30px;
    text-align: center;
  }

  .footer-logo {
    width: 70px; margin: 0 auto 20px;
    filter: drop-shadow(0 0 20px rgba(204,0,0,0.5));
  }

  .footer-title {
    font-family: 'Cairo', sans-serif;
    font-size: 22px; font-weight: 900;
    margin-bottom: 10px;
  }

  .footer-tagline {
    color: var(--gold); font-size: 14px;
    letter-spacing: 3px; margin-bottom: 30px;
  }

  .footer-links {
    display: flex; gap: 30px;
    justify-content: center; flex-wrap: wrap;
    list-style: none; margin-bottom: 30px;
  }

  .footer-links a {
    color: var(--gray); text-decoration: none;
    font-size: 14px; transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--red); }

  .footer-copy {
    font-size: 12px; color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
  }

  /* BACK TO TOP */
  #backTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--red);
    border: none; border-radius: 50%;
    color: white; font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(204,0,0,0.5);
    transition: all 0.3s;
    opacity: 0; pointer-events: none;
    z-index: 999;
  }

  #backTop.show { opacity: 1; pointer-events: all; }
  #backTop:hover { transform: translateY(-3px) scale(1.1); }

  /* COUNTER ANIMATION */
  .counter-num { display: inline-block; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 70px 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
    .timeline::before { right: 20px; }
    .timeline-item { grid-template-columns: 1fr 40px; }
    .timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: 15px; }
    .timeline-item:nth-child(odd) .timeline-empty { display: none; }
    .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: right; padding-left: 0; padding-right: 15px; }
    .timeline-item:nth-child(even) .timeline-empty { display: none; }
    .timeline-dot { grid-column: 2; }
  }
