/*! Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- MAVEX Atmosphere: Dark Gold Theme --- */
:root {
  --mavex-bg: #1A1A1A;
  --mavex-primary-gold: #DAA520;
  --mavex-accent-gold: #FFC300;
  --mavex-text-white: #F0F0F0;
  --mavex-ui-dark: rgba(22, 22, 22, 0.85);
  --mavex-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Body and Typography --- */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--mavex-bg);
  color: var(--mavex-text-white);
  overflow-x: hidden;
  position: relative;
  
  /* --- Dynamic Background Properties --- */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: linear-gradient(rgba(25, 25, 25, 0.3), rgba(20, 20, 20, 0.5)), url('https://i.pinimg.com/1200x/60/5c/ab/605cabb0c14b1ac7a8ca72cc2eb025b5.jpg'); 
  transition: background-image 0.8s ease-in-out; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
    color: var(--mavex-text-white);
}

a {
    color: var(--mavex-primary-gold);
    text-decoration: none;
    transition: var(--mavex-transition);
}

a:hover {
    color: var(--mavex-accent-gold);
    text-shadow: 0 0 5px rgba(255, 195, 0, 0.3);
}

p.lead {
    color: rgba(255, 255, 255, 0.85);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mavex-accent-gold), var(--mavex-primary-gold));
  border-radius: 10px;
  border: 2px solid rgba(26, 26, 26, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FFEA00, var(--mavex-accent-gold));
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(218, 165, 32, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(218, 165, 32, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/*^ Navbar */
.navbar {
  background: var(--mavex-ui-dark); 
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.navbar-brand {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--mavex-text-white), var(--mavex-accent-gold), var(--mavex-primary-gold), var(--mavex-text-white));
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Default Styles (Desktop) */
.navbar-brand {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--mavex-text-white), var(--mavex-accent-gold), var(--mavex-primary-gold), var(--mavex-text-white));
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
}

/* Optimization for Tablets */
@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(255, 195, 0, 0.4);
    animation: gradientFlow 3s ease infinite;
  }
}

/* Optimization for Mobile */
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 195, 0, 0.3);
    animation: gradientFlow 2s ease infinite;
  }
}


/*& Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: transparent;
  padding-top: 140px;
  overflow: hidden;
  z-index: 2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(218, 165, 32, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 70% 60%, rgba(255, 195, 0, 0.08), transparent 40%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.6);
  animation: float 15s infinite;
  pointer-events: none;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 80%;
  animation-delay: 2s;
  background: rgba(255, 255, 255, 0.6);
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 30%;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 70%;
  animation-delay: 1s;
  background: rgba(255, 255, 255, 0.6);
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(20px);
  }
  50% {
    transform: translateY(-60px) translateX(-20px);
  }
  75% {
    transform: translateY(-30px) translateX(30px);
  }
}

.animate-title {
  opacity: 0;
  transform: translateY(20px); 
  animation: slideIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, 
             cyberFlash 0.5s 0.8s ease-out 1;
}

.animate-fade {
  opacity: 0;
  filter: blur(5px);
  animation: fadeInBlur 2s 0.5s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cyberFlash {
    0% { text-shadow: 0 0 50px var(--mavex-accent-gold); opacity: 0.5; }
    100% { text-shadow: 0 0 30px rgba(255, 195, 0, 0.4); opacity: 1; }
}

@keyframes fadeInBlur {
  0% { opacity: 0; filter: blur(5px); }
  100% { opacity: 1; filter: blur(0); }
}

.hero-section h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mavex-text-white), #E0E0E0, var(--mavex-accent-gold));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  text-shadow: 0 0 30px rgba(255, 195, 0, 0.4);
  position: relative;
  z-index: 3;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-section .lead {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 3;
}

/** Search **/
.search-input {
  position: relative;
  z-index: 3;
}

.search-input input {
  background: rgba(10, 10, 10, 0.3);
  border: 2px solid rgba(218, 165, 32, 0.3);
  border-radius: 8px; 
  padding: 18px 170px 18px 30px;
  color: #fff;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.search-input input:focus {
  color: white;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid var(--mavex-accent-gold);
  box-shadow: 0 0 25px rgba(255, 195, 0, 0.6), 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px; 
  background: linear-gradient(135deg, var(--mavex-accent-gold), var(--mavex-primary-gold));
  background-size: 200% 200%;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 35px;
  box-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
  transition: all 0.4s ease;
  animation: btnGradient 3s ease infinite;
  cursor: pointer;
}

@keyframes btnGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-glow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 35px rgba(255, 195, 0, 0.8);
}

.btn-glow:active {
  transform: translateY(-50%) scale(0.98);
}

/*! Cards */
.cards-section {
  position: relative;
  background: transparent; 
  padding: 80px 0;
  z-index: 2;
}

.weather-card {
  position: relative;
  border-radius: 12px; 
  background: var(--mavex-ui-dark);
  border: 1px solid rgba(218, 165, 32, 0.2);
  backdrop-filter: blur(30px) saturate(180%);
  overflow: hidden;
  padding: 35px 25px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  animation: fadeUp 1s ease forwards;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.weather-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(218, 165, 32, 0.15),
    rgba(255, 195, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 12px;
}

.weather-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  border-color: rgba(218, 165, 32, 0.6);
  box-shadow: 0 15px 40px rgba(255, 195, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.weather-card:hover::before {
  opacity: 1;
}

.weather-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--mavex-accent-gold), var(--mavex-primary-gold), var(--mavex-accent-gold));
  background-size: 400% 400%;
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  animation: borderGlow 3s ease infinite;
  transition: opacity 0.5s ease;
}

@keyframes borderGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.weather-card:hover::after {
  opacity: 0.6;
}

.weather-header {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.weather-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mavex-text-white), var(--mavex-accent-gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.date {
  display: inline-block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.weather-body {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.weather-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 15px rgba(255, 195, 0, 0.6));
  transition: all 0.4s ease;
}

.weather-card:hover .weather-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(255, 195, 0, 0.9));
}

.degree {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--mavex-primary-gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.condition {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.weather-footer {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-footer p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Override for the lead paragraph in the hero (already done, but reiterating) */
.hero-section .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Overriding form-control styles for the search input */
.form-control.search {
    box-shadow: none !important;
}

.location {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 6px; 
  color: var(--mavex-accent-gold);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: rgba(218, 165, 32, 0.5);
  transform: scale(1.05);
}

.location i {
  margin-right: 6px;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/*! Media Query */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .search-input input {
    padding: 16px 140px 16px 25px;
    font-size: 0.95rem;
  }

  .btn-glow {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .degree {
    font-size: 2.5rem;
  }

  .weather-icon {
    width: 90px;
    height: 90px;
  }
  .social-links {
    justify-content: center !important;
  }
}

/*^ Footer */
.footer-section {
  position: relative;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(218, 165, 32, 0.2);
  overflow: hidden;
  z-index: 2; 
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.15), transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mavex-text-white), var(--mavex-accent-gold));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s ease infinite;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: end;
}


.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 165, 32, 0.3);
  color: var(--mavex-accent-gold);
  font-size: 1.1rem;
  transition: all 0.4s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(218, 165, 32, 0.15);
  border-color: var(--mavex-accent-gold);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 195, 0, 0.4) 20%, 
    rgba(218, 165, 32, 0.4) 50%, 
    rgba(255, 195, 0, 0.4) 80%, 
    transparent
  );
  margin-bottom: 30px;
  animation: dividerGlow 3s ease infinite;
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-bottom {
  padding-top: 20px;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-credit {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.engineer-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mavex-text-white), var(--mavex-accent-gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.engineer-name::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--mavex-accent-gold), var(--mavex-text-white));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.engineer-name:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  
  .footer-brand {
    font-size: 1.5rem;
  }
  
  .footer-text,
  .footer-credit {
    font-size: 0.85rem;
  }
}

/*^ Loading Screen - MAVEX Gold Core (New Design - Page Loader) */
.loader-container {
    position: fixed;
    inset: 0;
    background: var(--mavex-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.mavex-loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.mavex-loader div {
    position: absolute;
    border: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0.1, 0.5, 1) infinite;
}

.mavex-loader div:nth-child(1) {
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--mavex-accent-gold);
    border-right: 5px solid var(--mavex-primary-gold);
    animation-duration: 1.5s;
    filter: drop-shadow(0 0 10px rgba(255, 195, 0, 0.7));
}

.mavex-loader div:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 15px;
    left: 15px;
    border-bottom: 5px solid var(--mavex-text-white);
    border-left: 5px solid var(--mavex-accent-gold);
    animation-duration: 2.2s;
    animation-direction: reverse;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.mavex-loader::after {
    content: "MAVEX";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mavex-text-white);
    text-shadow: 0 0 15px rgba(255, 195, 0, 1);
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseText {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.9; }
}

/* Clear Night Sky */
body.bg-clear-night {
  background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(5, 5, 5, 0.5)), 
    url('https://i.pinimg.com/736x/26/99/a1/2699a15918fac0f81713ffbad5b0dd89.jpg'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Sunny Day */
body.bg-sunny {
  background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.5)), 
    url('https://images.unsplash.com/photo-1742757932175-0e07af0e5e1e?q=100&w=1920&auto=format&fit=crop'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Partly Cloudy */
body.bg-partly-cloudy {
  background-image: linear-gradient(rgba(15, 15, 15, 0.3), rgba(10, 10, 10, 0.5)), 
    url('https://images.unsplash.com/photo-1664291770756-80a7c078fb07?q=100&w=1920&auto=format&fit=crop'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Cloudy / Overcast */
body.bg-cloudy {
  background-image: linear-gradient(rgba(20, 20, 20, 0.3), rgba(15, 15, 15, 0.5)), 
    url('https://images.unsplash.com/photo-1758552728214-8cdda3185a09?q=100&w=1920&auto=format&fit=crop'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Rainy / Thunderstorm */
body.bg-rainy {
  background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(5, 5, 5, 0.5)), 
    url('https://i.pinimg.com/736x/62/e7/77/62e7776a662744b70a81f7bd191f6518.jpg'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Snowy */
body.bg-snowy {
  background-image: linear-gradient(rgba(20, 20, 20, 0.3), rgba(15, 15, 15, 0.5)), 
    url('https://i.pinimg.com/736x/19/8a/40/198a40eed745cc3cc02c878e82bcd799.jpg'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Mist / Fog */
body.bg-mist {
  background-image: linear-gradient(rgba(25, 25, 25, 0.3), rgba(20, 20, 20, 0.5)), 
    url('https://images.unsplash.com/photo-1642413057846-288b532402ce?q=100&w=1920&auto=format&fit=crop'); 
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* ... (حافظ على كل الكود القديم كما هو وأضف هذا في النهاية) ... */

/* --- [New] Hourly Forecast Section Styles --- */
.hourly-section-title {
    font-family: "Orbitron", sans-serif;
    color: var(--mavex-accent-gold);
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.hourly-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 10px;
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--mavex-accent-gold) rgba(0,0,0,0.3);
}

.hourly-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.hourly-scroll-container::-webkit-scrollbar-thumb {
    background: var(--mavex-primary-gold);
    border-radius: 10px;
}

.hourly-item {
    min-width: 100px;
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hourly-item:hover {
    background: rgba(218, 165, 32, 0.15);
    border-color: var(--mavex-accent-gold);
    transform: translateY(-5px);
}

.hourly-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.hourly-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 5px rgba(255, 195, 0, 0.5));
}

.hourly-temp {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    color: var(--mavex-text-white);
    font-weight: 700;
}

.hourly-condition {
    font-size: 0.75rem;
    color: var(--mavex-accent-gold);
    margin-top: 5px;
}