
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Roboto-Regular.woff2") format('woff2');
}

@font-face {
    font-family: 'OswaldBold';
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Oswald-Bold.woff2") format('woff2');
}

@font-face {
    font-family: 'OswaldRegular';
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Oswald-Regular.woff2") format('woff2');
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#fafafa;
    color:#222;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    padding-top:65px;
}

/* =========================
   GLOBAL CONTAINER
========================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
/* =========================
   NAVBAR
========================= */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 9999;
}

/* محتوى النافبار */

.nav-container{
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* اللوجو */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-circle{
    width:36px;
    height:36px;
    object-fit:cover;
    border-radius:50%;
}

.company-name-logo{
    font-family:"OswaldBold";
    font-size:18px;
    color:#000;
}

/* الروابط */

.nav-links{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-links a{
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
    color:#737373;
    font-family:"Roboto";
    font-size: 14px;
    transition:all .3s ease;
}

.nav-links a:hover{
    background:#f3f3f3;
    color:#000;
    font-weight: 500;
}

.nav-links a.active{
    background:#f9e6e6;
    color:#d41111;
}

/* الأزرار */

.auth-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.login-btn,
.reg-btn{
    font-family: "Arial";
    padding: 10px 16px;
    border:1px solid #d41111;
    border-radius:10px;
    background:transparent;
    color:#d41111;
    font-size: 14px;
    font-weight:700;
    cursor:pointer;
    text-decoration: none;
    transition:all .3s ease;
}

.login-btn:hover,
.reg-btn:hover{
    background:#d41111;
    color:#fff;
}

/* =========================
   Rankings
========================= */

.ranking-section {
    padding: 32px 0;
    flex-grow: 1; 
}

.page-title{
    font-family: 'OswaldBold';
    color: #000;
    font-size: 36px;
    text-align: left;
}

.page-desc{
    font-family: "Roboto";
    color: #737373;
    margin-top: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: left;
}

/* الحاوية الرئيسية وتوسيط محتواها بالكامل */
.coming-soon-container {
  width: 100%;
  max-width: 950px;
  min-height: 550px;
  background-color: #fff;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background-image: 
    radial-gradient(circle at top left, rgba(253, 235, 235, 0.5) 0%, transparent 30%),
    radial-gradient(circle at bottom right, rgba(253, 235, 235, 0.5) 0%, transparent 30%);
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* 1. تنسيق أيقونة الكأس */
.trophy-badge {
  width: 65px;
  height: 65px;
  background-color: #fcebeb; /* لون الخلفية الوردي الخفيف */
  color: #e03131; /* لون الكأس الأحمر الغامق */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 25px;
}

/* 2. شارة Coming Soon */
.status-badge {
  color: #e03131;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.status-badge .clock-icon {
  font-size: 14px;
}

/* 3. العناوين والوصف */
.main-title {
  margin: 0 0 16px 0;
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  font-family: "OswaldBold"; 
}

.description {
  font-family: "Roboto"; 
  margin: 0 auto 40px auto;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: #707070;
}

/* 4. كروت الخيارات السفليّة */
.cards-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.feature-card {
  width: 120px;
  background-color: #f2f2f2; /* لون الكروت الرمادي الفاتح */
  border-radius: 14px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.feature-card:hover {
  background-color: #ebebeb;
  transform: translateY(-2px); /* تأثير حركة بسيط عند تمرير الماوس */
}

.dash {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  line-height: 1;
}

.card-label {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}


/* =========================
   RESPONSIVE
========================= */

/* =========================
   RESPONSIVE - RANKINGS
========================= */

@media (max-width: 992px){

    .coming-soon-container{
        padding: 40px 25px;
        min-height: auto;
    }

    .main-title{
        font-size: 36px;
    }

    .description{
        font-size: 14px;
    }

    .cards-grid{
        flex-wrap: wrap;
        gap: 12px;
    }

    .feature-card{
        width: 110px;
    }
}

@media (max-width: 768px){

    /* العناوين */
    .page-title{
        font-size: 28px;
    }

    .page-desc{
        font-size: 14px;
    }

    /* الكارت الرئيسي */
    .coming-soon-container{
        padding: 35px 20px;
        border-radius: 16px;
    }

    .main-title{
        font-size: 28px;
        line-height: 1.2;
    }

    .description{
        font-size: 13px;
        margin-bottom: 30px;
    }

    /* الكروت تحت */
    .cards-grid{
        flex-direction: column;
        align-items: center;
    }

    .feature-card{
        width: 100%;
        max-width: 220px;
    }

    .trophy-badge{
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px){

    .coming-soon-container{
        padding: 25px 15px;
    }

    .main-title{
        font-size: 24px;
    }

    .description{
        font-size: 12.5px;
    }

    .status-badge{
        font-size: 11px;
    }

    .trophy-badge{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
