/* Body & Font */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
  cursor: url('../images/cursor.png') 16 16, auto; /* Set custom cursor image */
}
a, button, input {
  cursor: url('../images/cursor-click.png') 16 16, pointer;
  color: #fe961e;
}

input[type="text"], input[type="password"], input[type="email"], textarea, input[type="image"] {
  cursor: url('../images/cursor-click.png') 16 16, pointer;
}

img[onclick], img:hover {
  cursor: url('../images/cursor-click.png') 16 16, pointer;
}
/* Parallax Utility */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #fbfbf7;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Menu links */
.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: #fe8c0a;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fe8c0a;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #fe8c0a;
  transform: scale(1.05);
}

.menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.submenu {
  position: relative;
  z-index: 1;
}
.submenu-content {
  position: absolute;
  top: 10%;
  left: -13px;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.submenu:hover .submenu-content {
  display: flex;
}
.submenu-content a {
  padding: 0.5rem 1rem;
}
.submenu-content a:hover {
  background-color: #f0f0f0;
}

/* Buttons */
.marketplace {
  font-weight: 600;
  color: #fff;
  background: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}
.marketplace:hover {
  background: #0056b3;
}

/* Login/create account */
.log {
  color: #007bff;
}
.log:hover {
  color: #0056b3;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 3000;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #fff;
    padding: 4rem 1.5rem;
    gap: 1rem;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
  }
  .menu.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }

  /* Submenu adjustments */
  .submenu {
    width: 100%;
    flex-direction: column;
  }
  .submenu-content {
    position: relative;
    display: none;
    flex-direction: column;
    padding-left: 15px;
    margin-top: 0.5rem;
  }
  .submenu.active .submenu-content {
    display: flex;
  }

  /* Menu links */
  .menu a {
    width: 100%;
    padding: 0.5rem 0;
  }
  .submenu-content a {
    padding: 0.5rem 0;
  }
}

/* Container for horizontal sticky buttons */
.sticky-top-right {
  position: fixed;
  bottom: 15px;  /* distance from bottom */
  right: 20px;   /* distance from right */
  display: flex;
  gap: 15px;     /* space between buttons */
  z-index: 1500;
}

/* Individual buttons */
.sticky-btn img {
  height: 120px;  
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover animation */
.sticky-btn img:hover {
  transform: scale(1.1) rotate(-5deg); /* slightly bigger and rotated */
    filter: brightness(1.1); /* slightly brighter */
}

/* Remove floating animation */
.sticky-btn img {
  animation: none;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .sticky-top-right {
    top: auto;
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .sticky-btn img {
    height: 60px;
  }
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/header_bg.png') bottom center/100% auto no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 0;
}
.hero-header {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(to bottom right, #a8cfff, #e0f7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-size: 2.5rem;
}

/* Glowing sunlight rays */
.sunlight-rays {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 120%;
  height: 120%;
  background: repeating-conic-gradient(
    from 45deg,
    rgba(255,255,255,0.15) 0deg 8deg,
    rgba(255,255,255,0.03) 8deg 16deg
  );
  transform-origin: top left;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.8;
  animation: sunlightSweep 15s ease-in-out infinite alternate;
}

/* Soft moving and rotating sunlight effect */
@keyframes sunlightSweep {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: rotate(10deg) translate(10px, 0) scale(1.05);
    opacity: 0.8;
  }
  50% {
    transform: rotate(-10deg) translate(-10px, 10px) scale(1);
    opacity: 0.9;
  }
  75% {
    transform: rotate(15deg) translate(5px, -10px) scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    opacity: 0.6;
  }
}

/* Hero Login Panel */
.login-panel {
  position: absolute;
  left: 14%;
  top: 48%;
  transform: translateY(-50%) translateX(-30px);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  width: 250px;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Login Panel Animation */
@keyframes slideInLeft {
  to {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

/* Input Fields */
.login-panel input {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 216, 92, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 5px rgba(255, 216, 92, 0.2);
}

.login-panel input:focus {
  border-color: #ffd85c;
  box-shadow: inset 0 0 8px rgba(255, 216, 92, 0.5);
  background: rgba(0, 0, 0, 0.6);
}

.login-panel h2 {
  color: #ffd85c;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.login-panel form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-panel .button {
  /* width: 100%; */
  text-align: center;
  background: #ffd85c;
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.login-panel .button:hover {
  background: #ffcc00;
  box-shadow: 0 0 12px rgba(255, 216, 92, 0.6);
}

.login-panel .forgot {
  color: #ffd85c;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
  text-decoration: none;
}

.login-panel .forgot:hover {
  text-decoration: underline;
}

/* Hero Content */
.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-logo {
  width: 160px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: logoSlide 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Enhanced Hero Logo Big Animation (Always Visible) */
.hero-logo-big { 
  width: 350px;
  margin-bottom: 1rem;
  opacity: 1; /* Always visible */
  transform: translateY(0) scale(1) rotate(0deg);
  animation: logoEntrance 2s ease-out forwards, logoGlow 6s ease-in-out infinite alternate;
  animation-delay: 0.3s;
  filter: drop-shadow(0 0 12px rgba(0, 119, 204, 0.5));
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-logo-big:hover {
  transform: scale(1.05) rotate(0deg);
  filter: drop-shadow(0 0 25px rgba(0, 150, 255, 0.8));
}

/* Entrance animation with bounce */
@keyframes logoEntrance {
  0% { transform: translateY(-50px) scale(0.8) rotate(-8deg); }
  60% { transform: translateY(10px) scale(1.05) rotate(3deg); }
  80% { transform: translateY(-5px) scale(0.98) rotate(-2deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* Gentle glowing loop */
@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 10px rgba(0, 119, 204, 0.4)); }
  50% { filter: drop-shadow(0 0 25px rgba(0, 170, 255, 0.7)); }
  100% { filter: drop-shadow(0 0 10px rgba(0, 119, 204, 0.4)); }
}
.hero h1 {
  position: relative;
  z-index: 3;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #222; /* Dark for high contrast */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: slideUpGlow 1s ease-out forwards;
  animation-delay: 0.7s;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15); /* soft subtle shadow for depth */
}

.hero p {
  position: relative;
  z-index: 3;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 313px;
  color: #333; /* slightly lighter than h1 for hierarchy */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: slideUpGlow 1s ease-out forwards;
  animation-delay: 0.9s;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

@keyframes slideUpGlow {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* Hero Button */
.button {
  background: #fe8c0a;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 1.1s;
}

.button:hover {
  background: #ffcc00;
}

/* Hero Character */
.hero-character {
  position: absolute;
  bottom: 0;
  right: 5%;
  max-width: 50%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  animation: floatUpDown 6s ease-in-out infinite;
}

/* Smooth floating animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* adjust how high it floats */
  }
  100% {
    transform: translateY(0);
  }
}

/* Hero Character 2 */
.hero-character2 { 
  position: absolute;
  bottom: 0;
  left: 5%; 
  max-width: 50%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  animation: floatUpDown2 7s ease-in-out infinite;
}

/* Smooth floating animation (variant for character 2) */
@keyframes floatUpDown2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5px, -25px); /* subtle left sway + float */
  }
  100% {
    transform: translate(0, 0);
  }
}

/* falcon floating above character2 */
.falcon {
  position: absolute;
      bottom: 31%;
    left: 10%;
    max-width: 29%;  height: auto;
  z-index: 2;
  pointer-events: none;
  animation: eagleFloat 8s ease-in-out infinite;
}

/* Smooth eagle float */
@keyframes eagleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(0, -30px) rotate(-2deg);
  }
  75% {
    transform: translate(-10px, -15px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Angeling floating above hero-character */
.angeling {
  position: absolute;
  bottom: 18%;
  right: 20%;      
  max-width: 24%;
  height: auto;
  z-index: 2;        
  pointer-events: none;
  animation: angelingFloat 7s ease-in-out infinite;
}

/* Smooth angeling float */
@keyframes angelingFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(8px, -10px) rotate(2deg);
  }
  50% {
    transform: translate(0, -20px) rotate(-2deg);
  }
  75% {
    transform: translate(-8px, -10px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


.mistress {
  position: absolute;
      bottom: 45%;
    left: -8%;
    max-width: 40%;
height: auto;
  z-index: 2;
  pointer-events: none;
  animation: eagleFloat 8s ease-in-out infinite;
}

/* Smooth eagle float */
@keyframes eagleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(0, -30px) rotate(-2deg);
  }
  75% {
    transform: translate(-10px, -15px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


/* Slide Animations */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logoSlide {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Particles Overlay */
#hero-particles,
#hero-smoke,
#smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Sections Base */
section {
  padding: 6rem 1.5rem;
}

h2.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* About Section: Header-Themed */
.about {
  background: url('../images/about_bg.png') top center/100% auto no-repeat;
  padding: 6rem 2rem;
  color: #fff;
  position: relative;
}

/* Container Layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
}

/* Left Text */
.about-left {
  flex: 1 1 400px;
  animation: fadeInLeft 1s ease forwards;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ffd85c, 0 0 20px #ffcc00;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

/* Center Image */
.about-center {
  flex: 1 1 300px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.about-center img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 216, 92, 0.5);
}

/* Epic Stats Row Above Features */
.about-stats-epic-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.stat-epic-row {
  background: rgba(0,0,0,0.7);
  border: 2px solid #ffd85c;
  border-radius: 20px;
  width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  box-shadow: 0 0 25px rgba(255, 216, 92, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-epic-row:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255, 216, 92, 0.7);
}

.stat-epic-row .number {
  font-size: 2rem;
  font-weight: 900;
  color: #fffacd;
  text-shadow: 
    0 0 5px #ffd85c, 
    0 0 10px #ffd85c, 
    0 0 20px #ffcc00, 
    0 0 30px #ffcc00;
  transition: transform 0.3s, color 0.3s;
}

.stat-epic-row:hover .number {
  transform: scale(1.2);
  color: #fffacd;
}

.stat-epic-row .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Feature Cards */
.about-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(0,0,0,0.5);
  padding: 2rem 1rem;
  border-radius: 12px;
  flex: 1 1 30%;
  text-align: center;
  border: 1px solid rgba(255, 216, 92, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 216, 92, 0.6);
}

.feature-card h4 {
  font-size: 1.3rem;
  color: #ffd85c;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  color: #ddd;
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ---------- Light Summoning Circle (Static) ---------- */
:root {
  --bg:#f8fafc;
  --accent:#c5a04a;
  --muted:#4b5563;
  --ring-size: 420px;
  --icon-size: 65px;
  --icon-radius: calc(var(--ring-size)/2 - 42px);
}

.job-section.summoning-light {
  background: radial-gradient(circle at center, #e5dad5 0%, #3a3a3a 100%);
  padding: 4rem 1rem 6rem;
  color: #111827;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

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

.job-title {
  text-align: center;
  font-size: 3rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  margin-bottom: 2rem;
}

.summon-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2rem;
  align-items: center;
}

/* static rune ring */
.circle-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rune-ring {
    width: var(--ring-size);
    height: var(--ring-size);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 1), rgba(245, 245, 245, 0.95));
    box-shadow: inset 0 0 40px rgb(197 160 74), 0 8px 30px rgb(16 24 40);
    border: 1px solid rgba(197, 160, 74, 0.18);
    display: grid;
    place-items: center;
    position: relative;
}
/* rune center content */
.center-display {
  position: absolute;
  text-align: center;
  width: 70%;
  z-index: 3;
}

.center-display h3 {
  font-size: 1.8rem;
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(197,160,74,0.12);
}

.center-display p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0.8rem 0 1rem;
}

.btn-primary {
  background: linear-gradient(180deg, #ffe8b6, #f6c860);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  color: #3b2e04;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(197,160,74,0.18);
}
.btn-primary:hover { transform: translateY(-2px); }

/* icons */
.circle-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.circle-item {
  position: absolute;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  background: rgb(173 158 150);
  border: 1px solid rgba(197,160,74,0.2);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px rgba(17,24,39,0.06);
}
.circle-item img {
  width: 100%;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.circle-item:hover, .circle-item:focus {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 18px 40px rgba(197,160,74,0.15);
}
.circle-item:hover img { transform: scale(1.08); }
.circle-item.active {
  background: linear-gradient(180deg, #997100, #242017);
  box-shadow: 0 12px 30px rgba(197,160,74,0.2);
}

/* 6 icons around */
.circle-icons .circle-item:nth-child(1){transform:rotate(0deg) translateY(calc(-1 * var(--icon-radius))) rotate(0deg);}
.circle-icons .circle-item:nth-child(2){transform:rotate(60deg) translateY(calc(-1 * var(--icon-radius))) rotate(-60deg);}
.circle-icons .circle-item:nth-child(3){transform:rotate(120deg) translateY(calc(-1 * var(--icon-radius))) rotate(-120deg);}
.circle-icons .circle-item:nth-child(4){transform:rotate(180deg) translateY(calc(-1 * var(--icon-radius))) rotate(-180deg);}
.circle-icons .circle-item:nth-child(5){transform:rotate(240deg) translateY(calc(-1 * var(--icon-radius))) rotate(-240deg);}
.circle-icons .circle-item:nth-child(6){transform:rotate(300deg) translateY(calc(-1 * var(--icon-radius))) rotate(-300deg);}
.circle-icons .circle-item{left:50%; top:50%; margin:calc(var(--icon-size)/-2);}

/* right large preview */
.job-preview img {
    /* width: 100%; */
    position: relative;
    right: 50%;
    height: auto;
    border-radius: 16px;
    /* box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08); */
    /* background: #fff; */
}
/* responsive */
@media (max-width: 980px) {
  .summon-grid {
    grid-template-columns: 1fr;
  }
  .job-preview {
    order: -1;
    text-align: center;
  }
  .job-preview img {
    width: 320px;
  }
}



/* Info Panel */
.job-info {
  margin-left: auto;
  background: rgba(10,15,25,0.8);
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,198,255,0.2);
  z-index: 2;
}
.job-info h3 {
  font-size: 2rem;
  color: #00c6ff;
  text-shadow: 0 0 10px rgba(0,198,255,0.6);
  margin-bottom: 1rem;
}
.job-info p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .job-display {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  .job-image-wrapper {
    position: relative;
        /* width: 200px; */
        left: -75px;
        margin-bottom: 1rem;
  }
  job-image-wrapper img {
    position: relative;
    bottom: -30px;
    right: 0 !important;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0,198,255,0.45));
    animation: fadeIn 0.5s ease;
  }
  .job-info {
    max-width: 90%;
  }
}

/* PvP Section Background */
.rovah-rank-section {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden; /* ensure pseudo-element doesn't overflow */
}

/* Blurred background using pseudo-element */
.rovah-rank-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pvp_bg.png') center center / cover no-repeat;
   /*filter: blur(10px); */

    z-index: 0; /* behind content */
}

/* Make content appear above the blurred background */
.rovah-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Top 3 Characters on Rock */
.rovah-top3-rock {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 60px;
}

/* Rock Image */
.rovah-rock {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 597px;
    height: 139px;
    z-index: 1;
}

/* Characters on Rock */
.rovah-rank-on-rock {
    position: absolute;
    text-align: center;
    z-index: 2;
}

/* Badge above character */
.rovah-badge-rock {
    /*width: 80px;*/
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 80px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Character image */
.rovah-char-rock {
    width: 300px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Info card (hidden by default, under character) */
.rovah-info-card {
    position: absolute;
    bottom: -70px; /* under character */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 180px;
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid #ffd85c;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    z-index: 4;
}

/* Show info card on hover */
.rovah-rank-on-rock:hover .rovah-info-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Name styling inside info card */
.rovah-name-rock {
    font-weight: bold;
    color: #ffd85c;
    margin-bottom: 5px;
}

/* Stats inside info card */
.rovah-stats-rock {
    color: #fff7c0;
    font-size: 0.85rem;
}

/* Example starting positions (movable) */
#rank-1 { bottom: 94px; left: 47%; transform: translateX(-50%); }
#rank-2 { bottom: 46px; left: 75%; transform: translateX(-50%); }
#rank-3 { bottom: 40px; left: 20%; transform: translateX(-50%); }

/* PvP Table */
.rovah-table-wrapper { overflow-x: auto; }

.rovah-rank-table {
    width: 97%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 12px;
    overflow: hidden;
}

.rovah-rank-table th, .rovah-rank-table td {
    padding: 12px 15px;
    text-align: center;
}

.rovah-rank-table th {
    background: #ffd85c;
    color: #000;
    font-weight: bold;
}

.rovah-rank-table tr:hover td {
    background: rgba(255, 216, 92, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rovah-top3-rock { height: 300px; }
    .rovah-char-rock { width: 200px; }
    .rovah-badge-rock { width: 60px; top: -40px; }

    #rank-1, #rank-2, #rank-3 { bottom: 139px; }

    .rovah-info-card {
        width: 140px;
        font-size: 0.8rem;
        bottom: -60px;
    }

    .rovah-name-rock { font-size: 0.9rem; }
    .rovah-stats-rock { font-size: 0.8rem; }
    .rovah-rank-table { font-size: 0.85rem; }
    .rovah-rank-table th, .rovah-rank-table td { padding: 6px; }
}



/* ======================
   ROVAH RANKINGS THEME
   ====================== */
#rovah-rank-section {
  text-align: center;
  padding: 9rem 2rem;
  position: relative;
  background: url('../images/rank_bg.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;

}

.rovah-rank-header {
  margin-bottom: 3rem;
}

.rovah-rank-header h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #00c6ff;
  text-shadow: 0 0 15px rgba(0, 198, 255, 0.8);
}

.rovah-rank-header p {
  font-size: 1.1rem;
  color: #d3eaff;
  margin-top: 0.5rem;
}

/* Table styling */
#rovah-rank-section table.horizontal-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 198, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 198, 255, 0.3);
}

#rovah-rank-section table.horizontal-table th,
#rovah-rank-section table.horizontal-table td {
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 198, 255, 0.15);
}

#rovah-rank-section table.horizontal-table th {
  background: rgba(0, 198, 255, 0.1);
  color: #00c6ff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#rovah-rank-section table.horizontal-table tr {
  transition: background 0.3s ease, transform 0.2s ease;
}

#rovah-rank-section table.horizontal-table tr:hover {
  background: rgba(0, 198, 255, 0.1);
  transform: scale(1.01);
}

/* Rank badges */
#rovah-rank-section table.horizontal-table td:first-child {
  font-weight: bold;
  color: #00c6ff;
}

#rovah-rank-section table.horizontal-table tr:nth-child(2) td:first-child {
  color: #c0c0c0; /* Silver */
}
#rovah-rank-section table.horizontal-table tr:nth-child(3) td:first-child {
  color: #cd7f32; /* Bronze */
}

/* Top rank special glow */
#rovah-rank-section table.horizontal-table tr.top-ranked {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.25), rgba(0, 198, 255, 0.15));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: scale(1.02);
}

#rovah-rank-section table.horizontal-table tr.top-ranked td:first-child {
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* Character links */
#rovah-rank-section a {
  color: #ffd700;
  transition: 0.3s ease;
}

#rovah-rank-section a:hover {
  color: #00c6ff;
  text-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
}

/* Guild emblem */
#rovah-rank-section img {
  border-radius: 6px;
  }

/* Empty row */
#rovah-rank-section tr.empty-row td {
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
  #rovah-rank-section {
    padding: 3rem 1rem;
  }

  .rovah-rank-header h1 {
    font-size: 1.8rem;
  }

  #rovah-rank-section table.horizontal-table {
    font-size: 0.85rem;
  }

  #rovah-rank-section table.horizontal-table th,
  #rovah-rank-section table.horizontal-table td {
    padding: 8px;
  }
}

.rovah-rank-header {
  margin-bottom: 3rem;
}

.rovah-rank-header h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 198, 255, 0.8);
}

.rovah-rank-header p {
  font-size: 1.1rem;
  color: #d3eaff;
  margin-top: 0.5rem;
}

/* Table styling */
.rovah-rank-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 198, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 198, 255, 0.3);
}

.rovah-rank-table th,
.rovah-rank-table td {
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 198, 255, 0.15);
}

.rovah-rank-table th {
  background: rgba(0, 198, 255, 0.1);
  color: #00c6ff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rovah-rank-row {
  transition: background 0.3s ease, transform 0.2s ease;
}

.rovah-rank-row:hover {
  background: rgba(0, 198, 255, 0.1);
  transform: scale(1.01);
}

/* Rank badges */
.rovah-rank-badge {
  display: inline-block;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.rovah-top-rank .rovah-rank-badge {
  background: linear-gradient(45deg, #ffd700, #ff9900);
  color: #000;
}

/* Character name + class image */
.rovah-char-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.rovah-char-name img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
}

.rovah-no-data {
  margin-top: 2rem;
  color: #9ecfff;
  font-size: 1.2rem;
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 768px) {
  #rovah-rank-section {
    padding: 7rem 1rem;
  }

  .rovah-rank-header h1 {
    font-size: 1.8rem;
  }

  .rovah-rank-table {
    font-size: 0.85rem;
  }

  .rovah-rank-table th,
  .rovah-rank-table td {
    padding: 8px;
  }

  .rovah-char-name span {
    font-size: 0.9rem;
  }

  .rovah-rank-badge {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}


/* ================================
   ROVAH FILTER FORM STYLES (UPGRADED)
   ================================ */
.rovah-filter-form {
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.2);
  max-width: 700px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: visible; /* allow dropdown to show outside */
  z-index: 1;
  position: relative;
}

.rovah-filter-form:hover {
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.35);
}

.rovah-filter-form p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.rovah-filter-form label {
  font-size: 1rem;
  color: #9fe8ff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ================================
   SELECT DROPDOWN
   ================================ */
.rovah-filter-form select {
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(0, 40, 60, 0.9);
  color: #dffbff;
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Custom arrow using pseudo-element */
.rovah-filter-form select::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #00ffff;
  font-size: 0.8rem;
}

/* Hover effect */
.rovah-filter-form select:hover {
  border-color: #00ffff;
  background: rgba(0, 60, 90, 0.85);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ================================
   BUTTONS
   ================================ */
.rovah-filter-form input[type="submit"],
.rovah-filter-form input[type="button"] {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}

.rovah-filter-form input[type="submit"]:hover,
.rovah-filter-form input[type="button"]:hover {
  background: linear-gradient(135deg, #00ffff, #0088ff);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Special Reset Button */
.rovah-filter-form input[type="button"] {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  box-shadow: 0 0 15px rgba(255, 80, 100, 0.3);
}

.rovah-filter-form input[type="button"]:hover {
  box-shadow: 0 0 25px rgba(255, 80, 120, 0.5);
}

/* ================================
   MOBILE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
  .rovah-filter-form {
    padding: 1rem;
    width: 90%;
  }

  .rovah-filter-form p {
    flex-direction: column;
    gap: 0.75rem;
  }

  .rovah-filter-form label {
    font-size: 0.95rem;
  }

  .rovah-filter-form select,
  .rovah-filter-form input[type="submit"],
  .rovah-filter-form input[type="button"] {
    width: 100%;
    max-width: 300px;
  }
}

#rovah-db-section {
  padding: 9rem 2rem;
  position: relative;
  background: url('../images/rank_bg.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}


/* Wrapper with background image and vignette overlay */
.rovah-server-info-wrapper {
 padding: 9rem 2rem;
  position: relative;
  background: url('../images/rank_bg.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.rovah-server-info-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 60%, rgba(0,0,20,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Container */
.rovah-server-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  color: #333;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Info Table */
.rovah-server-info-table {
  flex: 1 1 450px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

/* Light Glow Border (very subtle) */
.rovah-server-info-table::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(60deg, #ffffff, #e3f3ff, #ffe3e3, #ffbcbc);
  border-radius: 16px;
  filter: blur(12px);
  opacity: 0.35;
  z-index: 0;
  animation: glowGradient 6s linear infinite;
}

@keyframes glowGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.rovah-server-info-table h2 {
  color: #fe8c0a;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 3px rgba(0,120,255,0.3);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.rovah-server-info-table table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}

.rovah-server-info-table th,
.rovah-server-info-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

.rovah-server-info-table th {
  color: #fe8c0a;
  width: 50%;
  font-weight: 600;
}

.rovah-server-info-table td {
  color: #444;
}

/* Character Image Section */
.rovah-server-info-image {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Character Image (light theme aura) */
.rovah-server-info-image img {
  max-width: 190%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  right: 191px;
  z-index: 2;
  filter: drop-shadow(0 0 35px rgba(255, 255, 255, 1));

}

/* New Light Aura */
.character-aura {
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,220,255,0.4), rgba(255,255,255,0));
  filter: blur(40px);
  z-index: 1;
  animation: pulseAura 2s infinite alternate;
}

@keyframes pulseAura {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0.7; }
}

/* Responsive */
@media (max-width: 900px) {
  .rovah-server-info-container {
    flex-direction: column;
    align-items: center;
  }
  .rovah-server-info-image {
    margin-top: 0;
  }
}

/* ---------------------------------------------------
   LIGHT THEME CONVERSION
--------------------------------------------------- */

.rov-download {
    background-color: #fdfdfd;
    padding: 40px 20px;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #333;
    width: 100%;
    max-width: 500px;
    justify-self: anchor-center;
    border-radius: 12px;
}
.rov-download-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.rov-download h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.rov-download p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rov-download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.rov-btn {
    background-color: #fe8c0a;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.rov-btn:hover {
    background-color: #a35700;
    transform: translateY(-2px);
}

.rov-system-req h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.rov-system-req ul {
    list-style-type: disc;
    padding-left: 20px;
}

.rov-system-req li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* ACCOUNT SECTION */
.rov-account {
    padding: 9rem 2rem;
    position: relative;
    background: url('../images/rank_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.rov-account-container {
    max-width: fit-content;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
    color: #222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    z-index: 1;
}

/* Modern soft glow */
.rov-account-container::before {
    display: none;
}

.rov-account-title {
    text-align: center;
    font-size: 2rem;
    color: #111;
    margin-bottom: 25px;
}

.rov-account-container label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.rov-account-container input[type="text"],
.rov-account-container input[type="password"],
.rov-account-container input[type="email"],
.rov-account-container select {
    width: 100%;
    padding: 10px 12px;
    background: white;
    border: 1px solid #bbb;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.rov-account-container input:focus,
.rov-account-container select:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 10px rgba(255,152,0,0.4);
}

/* Buttons ? Orange Yellow */
.rov-account-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff9800, #ffeb3b);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.rov-account-btn:hover {
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    box-shadow: 0 0 20px rgba(255,193,7,0.6);
    transform: scale(1.03);
}

.rov-account-links a {
    color: #ff9800;
}

.rov-account-links a:hover {
    color: #ffb300;
}

/* Generic form styling */
.generic-form-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 10px;
    color: #222;
    font-family: "Poppins", sans-serif;
}

.generic-form-table th {
    color: #444;
}

.generic-form-table input[type="text"],
.generic-form-table input[type="password"],
.generic-form-table input[type="email"],
.generic-form-table select {
    background: white;
    border: 1px solid #bbb;
    color: #222;
}

.generic-form-table input:focus,
.generic-form-table select:focus {
    border-color: #ff9800;
    box-shadow: 0 0 7px rgba(255,160,0,0.4);
}

/* Buttons (global) */
button,
input[type="submit"] {
    background: linear-gradient(90deg, #ff9800, #ffeb3b);
    border: none;
    border-radius: 8px;
    color: #000;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(255,179,0,0.4);
}

button:hover,
input[type="submit"]:hover {
    background: linear-gradient(90deg, #ffd54f, #ffb300);
    box-shadow: 0 0 20px rgba(255,193,7,0.7);
    transform: translateY(-2px);
}

button:active,
input[type="submit"]:active {
    transform: scale(0.98);
}

/* Battlepass */
.battlepass-section {
    text-align: center;
    padding: 9rem 3rem;
    background: url('../images/rank_bg.png') center/cover no-repeat;
    position: relative;
}





/* Footer */
footer {
  background: #111; /* dark background */
  color: #eee;      /* light text */
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 2px solid #ffd85c; /* subtle accent line */
}

footer a {
  color: #ffd85c;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}

footer img {
  margin-top: 0.5rem;
  max-width: 120px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.05);
}

footer p {
  margin: 0.3rem 0;
}

@media (max-width: 768px) {
  footer {
    font-size: 0.85rem;
    padding: 1.5rem 1rem;
  }

  footer img {
    max-width: 100px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-character {
    max-width: 35%;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {

  

  .hero-character {
    display: none;
  }

  /* Hero Section Mobile */
  .hero {
    height: auto;
    padding: 4rem 5% 6rem;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .login-panel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: 1.5rem auto 2rem;
    padding: 1.5rem;
  }

  /* Disable desktop animations on mobile */
  .content,
  .hero h1,
  .hero p,
  .hero-logo,
  .button,
  .login-panel {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Mobile Adjustments for Header & About Background */
@media (max-width: 768px) {

  /* Hero Background */
  .hero {
    background-position: center center !important; /* center image */
    background-size: cover !important;             /* cover full area */
    background-attachment: scroll !important;      /* disable fixed for mobile */
  }

  /* About Section Background */
  .about {
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: scroll !important; /* fixed causes weird behavior on mobile */
    padding: 4rem 1.5rem;                     /* reduce padding for small screens */
  }

  /* Optional: adjust stats container for mobile */
  .about-stats-epic-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .about-left,
  .about-center {
    flex: 1 1 100%;
    text-align: center;
  }

}
