/*========================================*/
/* GAMING THEME - Bootstrap 5 Modern     */
/* Version: 2.0 - Complete Redesign      */
/*========================================*/

/* CSS Custom Properties - Gaming Variables */
:root {
  /* Bootstrap 5 Color System Override */
  --bs-primary: #67c1f5;
  --bs-primary-rgb: 103, 193, 245;
  --bs-secondary: #ffd700;
  --bs-secondary-rgb: 255, 215, 0;
  --bs-success: #00ff88;
  --bs-success-rgb: 0, 255, 136;
  --bs-danger: #ff6b6b;
  --bs-danger-rgb: 255, 107, 107;
  --bs-warning: #ffaa00;
  --bs-info: #17a2b8;
  --bs-light: #f8f9fa;
  --bs-dark: #220b1d;
  
  /* Gaming Theme Colors */
  --gaming-primary: var(--bs-primary);
  --gaming-secondary: var(--bs-secondary);
  --gaming-accent: var(--bs-danger);
  --gaming-background: rgba(34, 11, 29, 0.95);
  --gaming-surface: rgba(0, 0, 0, 0.8);
  --gaming-glass: rgba(255, 255, 255, 0.1);
  --gaming-border: rgba(103, 193, 245, 0.3);
  
  /* Gaming Effects */
  --gaming-glow: 0 0 20px rgba(var(--bs-primary-rgb), 0.5);
  --gaming-glow-gold: 0 0 20px rgba(var(--bs-secondary-rgb), 0.5);
  --gaming-glow-danger: 0 0 20px rgba(var(--bs-danger-rgb), 0.5);
  --gaming-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gaming-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  
  /* Gaming Spacing */
  --gaming-border-radius: 1rem;
  --gaming-border-radius-lg: 1.5rem;
  --gaming-spacing: 1.5rem;
  
  /* Gaming Transitions */
  --gaming-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gaming-transition-fast: all 0.15s ease-out;
  --gaming-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Override for Bootstrap 5 */
[data-bs-theme="dark"] {
  --bs-body-bg: var(--gaming-background);
  --bs-body-color: #fff;
  --bs-emphasis-color: #fff;
  --bs-secondary-color: rgba(255, 255, 255, 0.75);
  --bs-tertiary-color: rgba(255, 255, 255, 0.5);
}

/*=====================================*/
/* GLOBAL GAMING STYLES               */
/*=====================================*/

body {
  font-family: 'Ubuntu', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--gaming-background);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Gaming Background System - FIXED Z-INDEX */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -50;
  opacity: 0.9;
  transform: translateZ(0);
}

.gaming-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -45;
  opacity: 0.3;
}

.gaming-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(34,11,29,0.6) 0%, 
    rgba(0,0,0,0.3) 25%, 
    rgba(34,11,29,0.7) 50%, 
    rgba(0,0,0,0.4) 75%, 
    rgba(34,11,29,0.6) 100%);
  z-index: -40;
  pointer-events: none;
}

/*=====================================*/
/* GAMING CONTAINER SYSTEM            */
/*=====================================*/

.gaming-container {
  position: relative;
  z-index: 100;
  padding: var(--gaming-spacing);
  min-height: 100vh;
  padding-top: calc(var(--gaming-spacing) + 45px); /* Updated for smaller navbar height + spacing */
}

.gaming-content {
  position: relative;
  z-index: 101;
  padding-top: 45px; /* Updated for smaller navbar spacing */
}

/*=====================================*/
/* GAMING CARD SYSTEM                 */
/*=====================================*/

.gaming-card {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(103, 193, 245, 0.3);
  border-radius: var(--gaming-border-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--gaming-transition);
  position: relative;
  overflow: hidden;
}

.gaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, var(--gaming-glass), transparent);
  opacity: 0;
  transition: var(--gaming-transition);
  pointer-events: none;
}

.gaming-card:hover {
  border-color: var(--gaming-primary);
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
  transform: translateY(-2px);
}

.gaming-card:hover::before {
  opacity: 1;
}

/* Gaming Card Variants */
.gaming-card-primary {
  border-color: var(--gaming-primary);
}

.gaming-card-secondary {
  border-color: var(--gaming-secondary);
}

.gaming-card-danger {
  border-color: var(--gaming-accent);
}

.gaming-card-primary:hover {
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
}

.gaming-card-secondary:hover {
  box-shadow: var(--gaming-glow-gold), var(--gaming-shadow-lg);
}

.gaming-card-danger:hover {
  box-shadow: var(--gaming-glow-danger), var(--gaming-shadow-lg);
}

/*=====================================*/
/* GAMING NAVIGATION                  */
/*=====================================*/

.gaming-navbar {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(103, 193, 245, 0.05);
  box-shadow: none;
  z-index: 1030;
  padding: 0.1rem 0; /* Reduced padding for smaller height */
  min-height: 90px; /* 5px smaller height */
}

.gaming-navbar .navbar-brand {
  color: var(--gaming-primary) !important;
  font-weight: 700;
  text-shadow: var(--gaming-glow);
  transition: var(--gaming-transition);
  line-height: 1.2; /* Fixed line height for consistent alignment */
  display: flex;
  align-items: center; /* Vertically center content */
}

.gaming-navbar .navbar-brand:hover {
  color: #fff !important;
  text-shadow: 0 0 30px var(--gaming-primary);
}

.gaming-navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.2rem 0.75rem !important; /* Reduced padding for better alignment */
  margin: 0 0.125rem;
  border-radius: 0.25rem;
  transition: var(--gaming-transition);
  font-size: 0.9rem; /* Slightly smaller font */
  line-height: 1.2; /* Match navbar-brand line height */
  display: flex;
  align-items: center; /* Vertically center content */
}

.gaming-navbar .navbar-nav .nav-link:hover,
.gaming-navbar .navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(var(--bs-primary-rgb), 0.2);
  box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.3);
}

/*=====================================*/
/* GAMING BUTTONS                     */
/*=====================================*/

.btn-gaming {
  background: linear-gradient(45deg, var(--gaming-primary), #5aa3e0);
  border: 2px solid var(--gaming-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--gaming-border-radius);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  box-shadow: var(--gaming-shadow);
  transition: var(--gaming-transition);
  position: relative;
  overflow: hidden;
}

.btn-gaming::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--gaming-transition);
}

.btn-gaming:hover {
  transform: translateY(-2px);
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
  background: linear-gradient(45deg, #5aa3e0, var(--gaming-primary));
}

.btn-gaming:hover::before {
  left: 100%;
}

.btn-gaming:active {
  transform: translateY(0);
}

/* Gaming Button Variants */
.btn-gaming-secondary {
  background: linear-gradient(45deg, var(--gaming-secondary), #e6c200);
  border-color: var(--gaming-secondary);
  color: #000;
}

.btn-gaming-danger {
  background: linear-gradient(45deg, var(--gaming-accent), #ff5252);
  border-color: var(--gaming-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-gaming-danger:hover {
  background: linear-gradient(45deg, #ff5252, var(--gaming-accent));
  color: #fff;
  box-shadow: var(--gaming-glow-danger), var(--gaming-shadow-lg);
  transform: translateY(-2px);
}

.btn-gaming-danger:active {
  transform: translateY(0);
}

/* Small Gaming Buttons */
.btn-gaming.btn-sm,
.btn-gaming-danger.btn-sm,
.btn-gaming-secondary.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  min-width: auto;
  transition: var(--gaming-transition);
}

/* Logout Button Special Styling */
.btn-gaming-danger.btn-sm {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border: 2px solid rgba(220, 53, 69, 0.8);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-gaming-danger.btn-sm:hover {
  background: linear-gradient(135deg, #c82333, #a02334);
  border-color: #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-gaming-danger.btn-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--gaming-transition);
}

.btn-gaming-danger.btn-sm:hover::before {
  left: 100%;
}

/* Pay Button Special Styling */
.btn-gaming.btn-sm {
  background: linear-gradient(135deg, var(--gaming-primary), #4a9ad9);
  border: 2px solid rgba(var(--bs-primary-rgb), 0.8);
  box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.3);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-gaming.btn-sm:hover {
  background: linear-gradient(135deg, #4a9ad9, #3a8ac9);
  border-color: var(--gaming-primary);
  box-shadow: 0 0 15px rgba(var(--bs-primary-rgb), 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
  color: #fff;
}

.btn-gaming.btn-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--gaming-transition);
}

.btn-gaming.btn-sm:hover::before {
  left: 100%;
}

/* Header Button Container Styling */
.navbar-nav .nav-item .d-flex {
  gap: 0.5rem;
  align-items: center;
}

/* Button Icons Enhancement */
.btn-gaming .bi,
.btn-gaming-danger .bi {
  transition: var(--gaming-transition-fast);
}

.btn-gaming:hover .bi,
.btn-gaming-danger:hover .bi {
  transform: scale(1.1);
}

/*=====================================*/
/* GAMING BADGES & CHIPS              */
/*=====================================*/

.gaming-badge {
  background: linear-gradient(45deg, var(--gaming-primary), #5aa3e0);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.3);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.5);
}

.gaming-badge-secondary {
  background: linear-gradient(45deg, var(--gaming-secondary), #e6c200);
  color: #000;
  box-shadow: 0 2px 8px rgba(var(--bs-secondary-rgb), 0.3);
  border-color: rgba(var(--bs-secondary-rgb), 0.5);
}

.gaming-badge-success {
  background: linear-gradient(45deg, var(--bs-success), #00e676);
  box-shadow: 0 2px 8px rgba(var(--bs-success-rgb), 0.3);
}

/*=====================================*/
/* GAMING AVATARS                     */
/*=====================================*/

.gaming-avatar {
  position: relative;
  display: inline-block;
}

.gaming-avatar img {
  border: 3px solid var(--gaming-primary);
  border-radius: 50%;
  transition: var(--gaming-transition);
  box-shadow: var(--gaming-shadow);
}

.gaming-avatar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.3), transparent);
  opacity: 0;
  transition: var(--gaming-transition);
  z-index: -1;
}

.gaming-avatar:hover img {
  border-color: #fff;
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
  transform: scale(1.05);
}

.gaming-avatar:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Avatar Sizes */
.gaming-avatar-sm img { width: 40px; height: 40px; }
.gaming-avatar-md img { width: 60px; height: 60px; }
.gaming-avatar-lg img { width: 80px; height: 80px; }
.gaming-avatar-xl img { width: 100px; height: 100px; }

/* Gaming Avatar Container Fix */
.gaming-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  width: auto; /* Keine feste Breite */
}

.gaming-avatar img {
  object-fit: cover;
  object-position: center;
}

/* Character Card Layout Fix */
.character-card .gaming-avatar {
  padding: 0.25rem;
  width: auto !important;
  min-width: unset !important;
}

/*=====================================*/
/* GAMING STATS & METERS              */
/*=====================================*/

.gaming-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: var(--gaming-border-radius);
  border: 1px solid var(--gaming-border);
  transition: var(--gaming-transition);
}

.gaming-stat:hover {
  background: rgba(0,0,0,0.5);
  border-color: var(--gaming-primary);
}

.gaming-stat-icon {
  color: var(--gaming-secondary);
  font-size: 1.25rem;
}

.gaming-stat-value {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.gaming-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/*=====================================*/
/* GAMING ALERTS & NOTIFICATIONS      */
/*=====================================*/

.gaming-alert {
  background: var(--gaming-surface);
  border: 2px solid var(--gaming-accent);
  border-radius: var(--gaming-border-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--gaming-shadow);
  color: #fff;
}

.gaming-alert-primary {
  border-color: var(--gaming-primary);
  background: rgba(var(--bs-primary-rgb), 0.1);
}

.gaming-alert-success {
  border-color: var(--bs-success);
  background: rgba(var(--bs-success-rgb), 0.1);
}

.gaming-alert-warning {
  border-color: var(--bs-warning);
  background: rgba(255, 193, 7, 0.1);
}

/*=====================================*/
/* GAMING ANIMATIONS                  */
/*=====================================*/

@keyframes gaming-glow-pulse {
  0%, 100% { 
    box-shadow: var(--gaming-glow), var(--gaming-shadow); 
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(var(--bs-primary-rgb), 0.8), var(--gaming-shadow-lg); 
    transform: scale(1.02);
  }
}

@keyframes gaming-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes gaming-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gaming-glow-pulse {
  animation: gaming-glow-pulse 2s ease-in-out infinite;
}

.gaming-float {
  animation: gaming-float 3s ease-in-out infinite;
}

/*=====================================*/
/* GAMING SCROLL & EFFECTS            */
/*=====================================*/

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--gaming-primary), #5aa3e0);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #5aa3e0, var(--gaming-primary));
  box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.5);
}

/*=====================================*/
/* GAMING RESPONSIVE UTILITIES        */
/*=====================================*/

/* Universal Page Content Spacing for Fixed Navbar */
.main-container {
  padding-top: 100px;
  max-width: 950px;           /* Begrenzt Breite */
  margin: 0 auto;             /* Zentriert Container */
  padding-left: 15px;         /* Bootstrap-Container Padding */
  padding-right: 15px;        /* Bootstrap-Container Padding */
  width: 100%;                /* Responsive Verhalten */
}
.container-fluid,
#fullpage > div,
.well {
  padding-top: 10px; /* Smaller spacing for legacy layouts */
}


/* Mobile Optimizations */
@media (max-width: 768px) {
  :root {
    --gaming-spacing: 1rem;
    --gaming-border-radius: 0.75rem;
  }
  
  .gaming-container {
    padding: 1rem;
    padding-top: calc(1rem + 45px); /* Much smaller navbar on mobile */
  }
  
  .main-container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 80px; /* Smaller top padding on mobile */
  }
  
  .gaming-content {
    padding-top: 45px; /* Much smaller navbar spacing on mobile */
  }
  

  
  .gaming-card {
    margin-bottom: 1rem;
  }

  
  #lycan {
	position: fixed;
	z-index: 4;
	background-image: url(../img/wolf.png);
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-position: -485px -185px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: auto 157%;
  }
  
  .gaming-navbar .navbar-nav .nav-link {
    padding: 0.375rem 0.75rem !important; /* Much smaller on mobile */
    margin: 0.125rem 0;
  }
  
  .btn-gaming {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  /* Mobile Header Button Improvements */
  .btn-gaming.btn-sm,
  .btn-gaming-danger.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    min-width: 70px;
  }
  
  .navbar-nav .nav-item .d-flex {
    gap: 0.25rem;
    flex-wrap: wrap;
  }
  
  .btn-gaming.btn-sm .bi,
  .btn-gaming-danger.btn-sm .bi {
    font-size: 0.875rem;
  }
  
  .gaming-avatar-lg img { width: 60px; height: 60px; }
  .gaming-avatar-xl img { width: 80px; height: 80px; }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .gaming-container {
    padding: 1.25rem;
  }
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
  .gaming-container {
    padding: 2rem;
  }
  
  .gaming-card {
    border-radius: var(--gaming-border-radius-lg);
  }
}

/*=====================================*/
/* GAMING UTILITY CLASSES             */
/*=====================================*/

.gaming-text-glow {
  text-shadow: 0 0 10px currentColor;
}

.gaming-text-primary {
  color: var(--gaming-primary) !important;
}

.gaming-text-secondary {
  color: var(--gaming-secondary) !important;
}

.gaming-bg-glass {
  background: var(--gaming-glass) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gaming-border-glow {
  box-shadow: inset 0 0 0 2px var(--gaming-primary), var(--gaming-glow);
}

/* Transparenz-Design für Content */
.gaming-card-transparent {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(103, 193, 245, 0.2) !important;
}

/* Header und Buttons behalten feste Farben */
.card-header,
.gaming-panel-header,
.widget-header {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  border: none !important;
  opacity: 1 !important;
}

.btn-gaming,
.btn-primary,
.gaming-badge {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  border-color: var(--gaming-primary) !important;
  opacity: 1 !important;
}

/* Verbesserte Lesbarkeit für dunklen Hintergrund */
.text-content,
.card-body,
.widget-content,
.card-title,
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Links für bessere Lesbarkeit */
a:not(.btn):not(.nav-link):not(.navbar-brand) {
  color: #67c1f5 !important;
  text-shadow: 0 0 3px rgba(103, 193, 245, 0.5);
  text-decoration: none;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
  color: #ffffff !important;
  text-shadow: 0 0 5px rgba(103, 193, 245, 0.8);
}

/* Gaming Tables */
table {
  background: rgba(0, 0, 0, 0.4) !important;
  color: #ffffff !important;
  border-radius: var(--gaming-border-radius);
  overflow: hidden;
}

table th {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border: none !important;
}

table td {
  background: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(103, 193, 245, 0.2) !important;
}

/* Fieldsets für Gaming-Design */
fieldset {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(103, 193, 245, 0.3) !important;
  border-radius: var(--gaming-border-radius);
  backdrop-filter: blur(8px);
  color: #ffffff !important;
}

legend {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border: none !important;
}

.gaming-cursor-pointer {
  cursor: pointer;
}

.gaming-no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hover-text-primary {
  transition: var(--gaming-transition-fast);
}

.hover-text-primary:hover {
  color: var(--gaming-primary) !important;
  text-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5);
}

/*=====================================*/
/* PARALLAX & BACKGROUND ELEMENTS     */
/*=====================================*/

/* Statische Hintergrund-Elemente */
#houses, #spears {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -30;
  pointer-events: none;
}

#houses {
  background-image: url(../img/houses.png);
  background-position: 100% 100%;
  background-size: auto 100%;
  z-index: -35;
}

#spears {
  background-image: url(../img/spear.png);
  background-position: 98% 95%;
  background-size: auto 35%;
  z-index: -33;
}

/* Parallax Krieger-Elemente (nur diese bewegen sich) */
#lycan_shadow, #lycan {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
  z-index: -20;
  pointer-events: none;
}

#lycan_shadow {
  background-image: url(../img/wolf_shadow.png);
  background-size: auto 220%; /* Viel größer: von 180% auf 220% */
  background-position: -50% 5px; /* Zur Hälfte links versteckt, Kopf fast am oberen Rand */
  z-index: -25;
}

#lycan {
  background-image: url(../img/wolf.png);
  background-size: auto 200%; /* Viel größer: von 160% auf 200% */
  background-position: -50% 5px; /* Zur Hälfte links versteckt, Kopf fast am oberen Rand */
  z-index: -20;
}

#highlight {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.8), transparent);
  mix-blend-mode: overlay;
  filter: blur(30px);
  pointer-events: none;
  z-index: 10;
}

/*=====================================*/
/* HERO LANDING PAGE STYLES           */
/*=====================================*/

.hero-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 100;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gaming-primary), transparent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  margin: 3rem 0;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--gaming-border-radius);
  transition: var(--gaming-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.2), rgba(var(--bs-primary-rgb), 0.4));
  border-color: var(--gaming-primary);
  color: #fff;
  box-shadow: var(--gaming-glow);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.4), rgba(var(--bs-primary-rgb), 0.6));
  transform: translateY(-2px);
  box-shadow: var(--gaming-glow), var(--gaming-shadow);
  color: #fff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--gaming-shadow);
  color: #fff;
}

.hero-info {
  margin-top: 4rem;
}

.hero-stat {
  text-align: center;
  padding: 1rem;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-primary);
  display: block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.hero-scroll-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  text-decoration: none;
  animation: gaming-bounce 2s infinite;
  transition: var(--gaming-transition-fast);
}

.hero-scroll-link:hover {
  color: var(--gaming-primary);
  transform: scale(1.2);
}

@keyframes gaming-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Gaming Features */
.gaming-feature {
  text-align: center;
  padding: 1.5rem;
}

.gaming-feature-icon {
  font-size: 2.5rem;
  color: var(--gaming-primary);
  margin-bottom: 1rem;
  display: block;
}

.gaming-feature h5 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.update-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-container {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 180px;
  }
  
  .hero-stat-value {
    font-size: 1.25rem;
  }
  
  .hero-stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-actions .d-flex {
    flex-direction: column !important;
  }
  
  .hero-info .row {
    justify-content: center;
  }
  
  .hero-info .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/*=====================================*/
/* BUBBLE EFFECTS (CSS)               */
/*=====================================

.gaming-bubble {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.gaming-bubble-1 {
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.4), rgba(var(--bs-primary-rgb), 0.1), transparent);
  animation: bubble-float-1 20s infinite linear;
}

.gaming-bubble-2 {
  background: radial-gradient(circle, rgba(var(--bs-secondary-rgb), 0.3), rgba(var(--bs-secondary-rgb), 0.1), transparent);
  animation: bubble-float-2 25s infinite linear;
}

.gaming-bubble-3 {
  background: radial-gradient(circle, rgba(var(--bs-success-rgb), 0.3), rgba(var(--bs-success-rgb), 0.1), transparent);
  animation: bubble-float-3 18s infinite linear;
}

@keyframes bubble-float-1 {
  0% { 
    transform: translateY(100vh) translateX(0) scale(0); 
    opacity: 0; 
  }
  10% { 
    opacity: 1; 
  }
  90% { 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-10vh) translateX(50px) scale(1); 
    opacity: 0; 
  }
}

@keyframes bubble-float-2 {
  0% { 
    transform: translateY(100vh) translateX(0) scale(0) rotate(0deg); 
    opacity: 0; 
  }
  15% { 
    opacity: 1; 
  }
  85% { 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-10vh) translateX(-30px) scale(1) rotate(360deg); 
    opacity: 0; 
  }
}

@keyframes bubble-float-3 {
  0% { 
    transform: translateY(100vh) translateX(0) scale(0); 
    opacity: 0; 
  }
  20% { 
    opacity: 1; 
  }
  80% { 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-10vh) translateX(20px) scale(1); 
    opacity: 0; 
  }
}

/*=====================================*/
/* PERFORMANCE OPTIMIZATIONS          */
/*=====================================*/

/* GPU Acceleration */
.gaming-card,
.gaming-avatar,
.btn-gaming {
  will-change: transform;
  transform: translateZ(0);
}

/* Character Card Layout Fix */
.character-card .row {
    margin-left: 0;
    margin-right: 0;
}

.character-card .col-auto {
    padding-left: 1rem;
    padding-right: 0.5rem;
}

.character-card .col {
    padding-left: 0.5rem;
    padding-right: 1rem;
}

/* Gaming Avatar in Cards */
.gaming-card .gaming-avatar {
    min-width: 90px;
    padding: 0.75rem 0.5rem;
}

.gaming-card .gaming-avatar img {
    border: 3px solid var(--gaming-primary);
    transition: var(--gaming-transition);
}

.gaming-card:hover .gaming-avatar img {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(103, 193, 245, 0.6);
}

/* Navbar Spacing Fix */
.gaming-navbar .navbar-nav {
    gap: 0.5rem;
}

.gaming-navbar .nav-link {
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: var(--gaming-transition);
}

.gaming-navbar .nav-link:hover {
    background: rgba(var(--bs-primary-rgb), 0.2);
}

/* Right menu positioning fix */
.gaming-navbar .navbar-nav.ms-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.gaming-navbar .navbar-collapse {
    justify-content: space-between;
}

/* Gaming stats positioning in character cards */
.gaming-stat-value {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Character Card Gaming Stat Fix - Reduce Padding */
.character-card .gaming-stat,
.gaming-card .gaming-stat {
    padding: 0.25rem 0.5rem !important;
    margin-bottom: 0.5rem;
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(103, 193, 245, 0.2) !important;
}

/* ========================================= */
/* NEUE GAMING NAVIGATION SYSTEM - V2       */
/* ========================================= */

/* Linke Navigation Styles */
.navbar-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.navbar-brand-new {
    margin-right: 2rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--gaming-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #fff !important;
    background: rgba(var(--bs-primary-rgb), 0.2);
    box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.3);
}

/* Rechte Navigation - User Menu */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu-dropdown {
    position: relative;
}

.user-menu-toggle {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(103, 193, 245, 0.3);
    border-radius: var(--gaming-border-radius);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--gaming-transition);
    color: #fff;
    text-decoration: none;
}

.user-menu-toggle:hover {
    border-color: var(--gaming-primary);
    box-shadow: var(--gaming-glow);
    color: #fff;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gaming-primary);
    object-fit: cover;
}

.user-currencies {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.currency-item img {
    width: 16px;
    height: 16px;
}

/* User Menu Dropdown */
.user-menu-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--gaming-surface);
    border: 2px solid var(--gaming-border);
    border-radius: var(--gaming-border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--gaming-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--gaming-transition);
    z-index: 1050;
}

.user-menu-dropdown.show .user-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-content .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--gaming-transition);
    border-bottom: 1px solid rgba(103, 193, 245, 0.2);
}

.user-menu-content .nav-link:last-child {
    border-bottom: none;
}

.user-menu-content .nav-link:hover {
    color: #fff;
    background: rgba(var(--bs-primary-rgb), 0.2);
}

/* Footer Fixed Position */
.footer {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(103, 193, 245, 0.05) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    box-shadow: none;
    padding: 0.75rem 0 !important;
    min-height: 70px;
}

/* Body Padding für Fixed Footer */
body {
    padding-bottom: 60px !important;
}

/* Mobile Navigation Fixes */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .navbar-left {
        flex: 1;
    }
    
    .navbar-right {
        order: 2;
    }
    
    .navbar-toggler {
        order: 3;
    }
    
    /* Mobile User Menu einfacher */
    .user-menu-toggle {
        padding: 0.25rem 0.5rem;
        gap: 0.5rem;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
    }
    
    .currency-item {
        font-size: 0.75rem;
    }
}

/* Language Selector im Footer */
.footer-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-language-selector select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(103, 193, 245, 0.3);
    border-radius: 0.375rem;
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.footer-language-selector select:focus {
    border-color: var(--gaming-primary);
    box-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5);
    outline: none;
}

/* Compact Gaming Stat for Character Cards */
.gaming-card .gaming-stat {
    gap: 0.5rem;
    font-size: 0.875rem;
}

.gaming-card .gaming-stat-icon {
    font-size: 1rem;
}

.gaming-card .gaming-stat-value {
    font-size: 0.95rem;
    margin-left: 0;
}

.gaming-card .gaming-stat-label {
    font-size: 0.8rem;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gaming-glow-pulse,
  .gaming-float {
    animation: none !important;
  }
}

/* Mobile Character Card Fixes */
@media (max-width: 768px) {
    .character-card .col-auto {
        padding-left: 0.75rem;
        padding-right: 0.25rem;
    }
    
    .character-card .col {
        padding-left: 0.25rem;
        padding-right: 0.75rem;
    }
    
    .gaming-card .gaming-avatar {
        min-width: 70px;
        padding: 0.5rem 0.25rem;
    }
}

/*=====================================*/
/* STICKY FOOTER LAYOUT               */
/*=====================================*/

/* Ensure body uses full height with flexbox */
body.d-flex {
  min-height: 100vh;
}

/* Main content grows to push footer down */
main.flex-grow-1 {
  display: flex;
  flex-direction: column;
  min-height: 0; /* Allow shrinking */
}

/* Footer content visibility */
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 0.875rem; /* Smaller text */
  margin-bottom: 0 !important;
}

.footer a:hover {
  color: var(--gaming-primary) !important;
  text-shadow: 0 0 5px rgba(103, 193, 245, 0.6);
}

/* Content area minimum height to ensure footer stays at bottom */
/*#fullpage {*/
/*  min-height: calc(100vh - 90px); !* Account for smaller navbar + footer *!*/
/*  padding-bottom: 1rem; !* Smaller space before footer *!*/
/*}*/

/* Gaming container adjustments for sticky footer */
.gaming-container.flex-grow-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 90px);
}

/*=====================================*/
/* GAMING FORMS SYSTEM                */
/*=====================================*/

/* Form Container für perfekte Zentrierung */
.gaming-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 170px);
  padding: 2rem 1rem;
}

/* Gaming Form Card */
.gaming-form-card {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(103, 193, 245, 0.4) !important;
  border-radius: var(--gaming-border-radius-lg);
  box-shadow: var(--gaming-shadow-lg), 0 0 30px rgba(var(--bs-primary-rgb), 0.2);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gaming-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, var(--gaming-glass), transparent);
  opacity: 0.1;
  pointer-events: none;
}

/* Form Header */
.gaming-form-header {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  text-align: center;
  padding: 1.5rem;
  margin: 0 !important;
  border: none !important;
  position: relative;
}

.gaming-form-header h3 {
  margin: 0 !important;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff !important;
}

.gaming-form-header hr {
  border-color: rgba(255, 255, 255, 0.3) !important;
  margin: 1rem 0 0 0 !important;
}

/* Gaming Form Inputs */
.gaming-form-input {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid rgba(103, 193, 245, 0.3) !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem;
  transition: var(--gaming-transition);
}

.gaming-form-input:focus {
  background: rgba(0, 0, 0, 0.4) !important;
  border-color: var(--gaming-primary) !important;
  box-shadow: 0 0 15px rgba(var(--bs-primary-rgb), 0.4) !important;
  color: #fff !important;
  outline: none !important;
}

.gaming-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Gaming Form Buttons */
.gaming-form-submit {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  border: 2px solid var(--gaming-primary) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.875rem 2rem !important;
  border-radius: var(--gaming-border-radius) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: var(--gaming-shadow);
  transition: var(--gaming-transition);
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gaming-form-submit:hover {
  background: linear-gradient(145deg, #5aa3e0, #4a9ad9) !important;
  border-color: #5aa3e0 !important;
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
  transform: translateY(-2px);
  color: #fff !important;
}

.gaming-form-submit:active {
  transform: translateY(0);
}

/* Registration Form Specific */
.gaming-reg-info {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  background: rgba(var(--bs-primary-rgb), 0.1);
  padding: 0.5rem;
  border-radius: 0.375rem;
  border-left: 3px solid var(--gaming-primary);
}

/* Gaming Captcha */
.gaming-captcha {
  max-width: 300px !important;
  width: 100% !important;
  border: 2px solid rgba(103, 193, 245, 0.3) !important;
  border-radius: var(--gaming-border-radius) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--gaming-shadow);
  object-fit: contain;
  transition: var(--gaming-transition);
}

.gaming-captcha:hover {
  border-color: var(--gaming-primary) !important;
  box-shadow: var(--gaming-glow);
}

.gaming-captcha-refresh {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.875rem;
  text-decoration: none;
  background: rgba(var(--bs-primary-rgb), 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  display: inline-block;
  transition: var(--gaming-transition);
}

.gaming-captcha-refresh:hover {
  color: #fff !important;
  background: rgba(var(--bs-primary-rgb), 0.4);
  text-decoration: none;
}

/* Gaming Checkbox */
.gaming-checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--gaming-border-radius);
  border: 1px solid rgba(103, 193, 245, 0.2);
  margin: 1rem 0;
}

.gaming-checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gaming-primary);
  cursor: pointer;
}

.gaming-checkbox-container label {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  cursor: pointer;
  flex: 1;
  font-size: 0.9rem;
}

.gaming-checkbox-container a {
  color: var(--gaming-primary) !important;
  text-decoration: none;
  text-shadow: 0 0 3px rgba(var(--bs-primary-rgb), 0.5);
  transition: var(--gaming-transition-fast);
}

.gaming-checkbox-container a:hover {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(var(--bs-primary-rgb), 0.8);
}

/* Form Alerts */
.gaming-form-alert {
  background: var(--gaming-surface) !important;
  border: 2px solid !important;
  border-radius: var(--gaming-border-radius) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--gaming-shadow);
  color: #fff !important;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
}

.gaming-form-alert.alert-success {
  border-color: var(--bs-success) !important;
  background: rgba(var(--bs-success-rgb), 0.1) !important;
}

.gaming-form-alert.alert-danger {
  border-color: var(--gaming-accent) !important;
  background: rgba(var(--bs-danger-rgb), 0.1) !important;
}

.gaming-form-alert h3 {
  color: #fff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0 !important;
}

.gaming-form-alert .close,
.gaming-form-alert .btn-close {
  color: #fff !important;
  opacity: 0.8;
  transition: var(--gaming-transition-fast);
}

.gaming-form-alert .close:hover,
.gaming-form-alert .btn-close:hover {
  opacity: 1;
  color: #fff !important;
}

/* Mobile Form Optimizations */
@media (max-width: 768px) {
  .gaming-form-container {
    min-height: calc(100vh - 140px);
    padding: 1rem 0.5rem;
  }
  
  .gaming-form-card {
    max-width: 100%;
    margin: 0 0.5rem;
  }
  
  .gaming-form-header {
    padding: 1rem;
  }
  
  .gaming-form-header h3 {
    font-size: 1.5rem;
  }
  
  .gaming-captcha {
    height: 120px !important;
    max-width: 250px !important;
  }
  
  .gaming-form-submit {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }
}

/*=====================================*/
/* ITEMS PAGE GAMING CARDS            */
/*=====================================*/

/* Items Grid Layout */
.items-gaming-container {
  padding: 1.5rem 0;
}

.items-gaming-header {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--gaming-border-radius) var(--gaming-border-radius) 0 0;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.items-gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 var(--gaming-border-radius) var(--gaming-border-radius);
}

.item-gaming-card {
  background: rgba(0, 0, 0, 0.6) !important;
  border: 2px solid rgba(103, 193, 245, 0.3) !important;
  border-radius: var(--gaming-border-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--gaming-shadow);
  transition: var(--gaming-transition);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.item-gaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, var(--gaming-glass), transparent);
  opacity: 0;
  transition: var(--gaming-transition);
  pointer-events: none;
}

.item-gaming-card:hover {
  border-color: var(--gaming-primary) !important;
  box-shadow: var(--gaming-glow), var(--gaming-shadow-lg);
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.item-gaming-card:hover::before {
  opacity: 1;
}

.item-gaming-card-header {
  background: linear-gradient(145deg, var(--gaming-primary), #5aa3e0) !important;
  color: #fff !important;
  padding: 1rem;
  text-align: center;
  border: none !important;
  position: relative;
  z-index: 1;
}

.item-gaming-card-header h5 {
  margin: 0 !important;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #fff !important;
  font-size: 1rem;
}

.item-gaming-card-body {
  padding: 1.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.item-gaming-image {
  max-width: 80px;
  max-height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: var(--gaming-transition);
}

.item-gaming-card:hover .item-gaming-image {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(var(--bs-primary-rgb), 0.4));
}

/* Gaming Breadcrumb */
.gaming-breadcrumb {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(103, 193, 245, 0.3) !important;
  border-radius: var(--gaming-border-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.gaming-breadcrumb a {
  color: var(--gaming-primary) !important;
  text-decoration: none;
  transition: var(--gaming-transition-fast);
}

.gaming-breadcrumb a:hover {
  color: #fff !important;
  text-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.6);
}

.gaming-breadcrumb .active {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Mobile Items Grid */
@media (max-width: 768px) {
  .items-gaming-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .item-gaming-card-body {
    min-height: 120px;
    padding: 1rem;
  }
  
  .item-gaming-image {
    max-width: 60px;
    max-height: 60px;
  }
  
  .item-gaming-card-header h5 {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .items-gaming-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .item-gaming-card-body {
    min-height: 100px;
    padding: 0.75rem;
  }
  
  .item-gaming-image {
    max-width: 50px;
    max-height: 50px;
  }
}