/* assets/css/style.css */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Orbitron:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --primary: #3308c2;
  /* Brighter, Racing Red */
  --primary-dark: #0d0824;
  --secondary: #0056b3;
  --accent-color: #130e26;
  --dark: #020c1936;
  --nav: #e6e1fd1e;
  --background: #060119;
  --dark-accent: #111111;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --bg-card: #0101014e;
  --card-bg: rgba(20, 20, 20, 0.6);
  --glass: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --neon-shadow: 0 0 10px rgba(255, 0, 21, 0.4);
}

body {
  background-color: var(--background);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(11, 7, 33, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(30, 28, 0, 0.4) 0%, transparent 50%);
  color: var(--text);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.display-1,
.display-2,
.display-3,
.display-4 {
  font-family: "Teko", sans-serif;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
  /* text-shadow: 0 0 8px var(--primary); */
}




/* --- NEW PREMIUM DESIGN --- */

/* Premium Listings (Category) */
.premium-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border-radius: 0;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--primary);
  transition: 0.4s;
  z-index: 10;
}

.premium-card:hover::before {
  height: 100%;
}

.premium-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.premium-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.premium-card:hover .premium-card-img {
  transform: scale(1.1);
}

.premium-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

.premium-card:hover .premium-overlay {
  opacity: 1;
}

.premium-content {
  padding: 25px;
}

.premium-date {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
  font-family: 'Teko', sans-serif;
}