/* Updated Color Scheme */
:root {
  /* Primary Colors */
  --primary: #5E56F7;  /* Vibrant purple-blue */
  --primary-light: #F0EFFF;
  --secondary: #8A85FF;
  
  /* Neutral Colors */
  --text: #1A1A2E;     /* Deep navy */
  --text-light: #6D6D80;
  --bg: #F8F9FF;       /* Very light purple tint */
  --card-bg: #FFFFFF;
  --border: #E1E1F5;
  
  /* Status Colors */
  --success: #00C897;   /* Teal green */
  --danger: #FF5D6C;    /* Coral red */
  --warning: #FFB344;   /* Warm yellow */
  
  /* Shadows & Radius */
  --shadow: 0 4px 12px rgba(94, 86, 247, 0.1);
  --radius: 16px;
  --radius-sm: 8px;
}

.dark-mode {
  --primary: #8A85FF;
  --primary-light: #2A2740;
  --secondary: #A8A6FF;
  --text: #F0F0FF;
  --text-light: #A5A5C0;
  --bg: #12121D;
  --card-bg: #1E1E2E;
  --border: #3A3A4F;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.body-bg{
  background:linear-gradient(180deg, #040918 0%, #091540 100%) ;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: all 0.3s ease;
  padding: 2rem 1rem;
 background:linear-gradient(180deg, #EBF2FC 0%, #EEF8F9 100%) ;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  display: block;
  color: #fff !important;
}
.logo img {
  height: 32px;
}


.logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.theme-btn {
  background-color:hsl(0, 0%, 86%) ;
  border: none;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}


.bg{
  background-color: hsl(225, 23%, 24%);
}

.theme-btn img {
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-tabs ul li {
    display: inline-block;
    list-style: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;

   box-shadow: var(--shadow);
  background: white;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tabs li.active ,.filter-tabs ul li:hover{
  background: hsl(3, 77%, 44%);
  color: white;
}



/* Extensions Grid */
.extensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.90rem;
}

