:root {
  --primary-color: #00879e; /* Premium Teal */
  --secondary-color: #f7b42c; /* Gold accent */
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --light-bg: #f5f8fa;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --glass-blur: blur(10px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  /* Modern Gradient Background for Glass Effect */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glass Utility Class */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Header */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-item:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #fcbf49);
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(247, 180, 44, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 180, 44, 0.4);
}

.lang-switch a {
  margin-left: 10px;
  font-weight: 600;
  opacity: 0.7;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color), #005f73);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  width: 90%;
  max-width: 850px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255,255,255,0.2);
}

.search-box input,
.search-box select {
  border: none;
  padding: 15px 20px;
  outline: none;
  font-size: 1.05rem;
  background: transparent;
}

.search-box input {
  flex-grow: 1;
}

.search-box button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.search-box button:hover {
  background: #006c7e;
  transform: scale(1.05);
}

/* Categories */
.categories-section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-size: 2rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin-top: 15px;
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

.category-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.8);
}

.category-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  background: rgba(0, 135, 158, 0.1);
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotateY(360deg);
}

.category-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

/* Auth Pages */
.auth-container {
  max-width: 480px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #444;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  transition: var(--transition);
  background: rgba(255,255,255,0.9);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 135, 158, 0.1);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1.05rem;
}

.btn-google {
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-google:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #666;
}

.form-footer a {
  color: var(--primary-color);
  font-weight: 700;
}

/* Footer */
.main-footer {
  background: #1a262b;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
  border-left: 3px solid var(--secondary-color);
  padding-left: 15px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0bec5;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  color: #78909c;
}

@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    width: 100%;
    border-radius: 25px;
    padding: 20px;
  }
  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

 
 / *   T o p   H i t s   S e c t i o n   * /  
 . t o p - h i t s - s e c t i o n   {  
         p a d d i n g :   6 0 p x   0 ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 / *   D i a g o n a l   B a c k g r o u n d   * /  
 . t o p - h i t s - s e c t i o n : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f d f b f b   0 % ,   # e b e d e e   1 0 0 % ) ;  
         z - i n d e x :   - 2 ;  
 }  
  
 . t o p - h i t s - s e c t i o n : : a f t e r   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   - 5 0 % ;  
         l e f t :   - 5 0 % ;  
         w i d t h :   2 0 0 % ;  
         h e i g h t :   2 0 0 % ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 0 5 )   0 % ,   t r a n s p a r e n t   6 0 % ) ;  
         z - i n d e x :   - 1 ;  
         a n i m a t i o n :   p u l s e   1 0 s   i n f i n i t e   e a s e - i n - o u t ;  
 }  
  
 @ k e y f r a m e s   p u l s e   {  
         0 %   {   t r a n s f o r m :   s c a l e ( 0 . 8 ) ;   }  
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 2 ) ;   }  
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 0 . 8 ) ;   }  
 }  
  
 . t o p - h i t s - s e c t i o n   . s e c t i o n - t i t l e   {  
         c o l o r :   # 1 e 1 b 4 b ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   i n l i n e - b l o c k ;  
 }  
  
 . t o p - h i t - c a r d   {  
         b o r d e r :   n o n e   ! i m p o r t a n t ;  
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 )   ! i m p o r t a n t ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . t o p - h i t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x )   ! i m p o r t a n t ;  
         b o x - s h a d o w :   0   2 0 p x   3 0 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 1 5 ) ;  
 }  
  
 . b a d g e - t o p - h i t   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 0 p x ;  
         r i g h t :   1 0 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   # f f 4 5 0 0 ,   # f f 8 c 0 0 ) ;  
         c o l o r :   w h i t e ;  
         p a d d i n g :   5 p x   1 0 p x ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 7 r e m ;  
         f o n t - w e i g h t :   b o l d ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 5 ,   6 9 ,   0 ,   0 . 3 ) ;  
         z - i n d e x :   2 ;  
         a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   f l o a t   {  
         0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 p x ) ;   }  
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;   }  
         1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 p x ) ;   }  
 }  
 