/* ==========================================
   FONTS & BASE STYLES
   Extracted from head.twig for better organization
   ========================================== */

@font-face {
  font-family: 'ClashDisplay-Extralight';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Extralight.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Extralight.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Light';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Light.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Light.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Regular';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Regular.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Regular.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Medium';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Medium.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Medium.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Semibold.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Semibold.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Bold.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Bold.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'ClashDisplay-Variable';
  src: url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Variable.woff2') format('woff2'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Variable.woff') format('woff'),
       url('https://raw.githubusercontent.com/RezzoMC/NTeam/main/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

/* الألوان: palette.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif !important;
}

body {
    background-color: transparent !important;
    color: #f6f6f6 !important;
    font-family: 'ClashDisplay-Semibold' !important;
    overflow-x: hidden !important;
    line-height: 1.6 !important;
    position: relative !important;
}

body::before {
    display: none !important;
}

.site, .site-content, main, .content {
    background: transparent !important;
}

::-webkit-scrollbar { 
    width: 8px; 
}

::-webkit-scrollbar-track { 
    background: #050505; 
}

::-webkit-scrollbar-thumb { 
    background: #ff3333; 
    border-radius: 4px; 
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

#glow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: floatOrb 25s infinite ease-in-out;
}

.glow-orb:nth-child(1) { animation-delay: 0s; }
.glow-orb:nth-child(2) { animation-delay: -5s; }
.glow-orb:nth-child(3) { animation-delay: -10s; }
.glow-orb:nth-child(4) { animation-delay: -15s; }
.glow-orb:nth-child(5) { animation-delay: -3s; }
.glow-orb:nth-child(6) { animation-delay: -8s; }
.glow-orb:nth-child(7) { animation-delay: -13s; }
.glow-orb:nth-child(8) { animation-delay: -18s; }
.glow-orb:nth-child(9) { animation-delay: -6s; }
.glow-orb:nth-child(10) { animation-delay: -12s; }

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -80px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 60px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.4;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
}

.glow-orb.pulse {
    animation: floatOrb 25s infinite ease-in-out, pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { filter: blur(100px); }
    50% { filter: blur(120px); }
}

.text-gradient {
    background: linear-gradient(90deg, #ff3333 0%, white 50%, #ff3333 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-move 3s linear infinite;
    display: inline-block;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.highlight {
    color: #ff3333;
    text-shadow: 
        0 0 16px rgba(255, 51, 51, 0.6),
        0 0 32px rgba(255, 51, 51, 0.4),
        0 0 48px rgba(255, 51, 51, 0.2);
    display: block;
    margin-top: 10px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 51, 51, 0.08);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #ff3333;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #ffffff;
    font-size: 18px;
}

.small-header {
    margin-bottom: 40px;
}

.small-header h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
