/* ===== MODERN DELTA SHUFFLE DESIGN ===== */


* {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta militar base */
  --olive-green: #4a5d23;
  --forest-green: #2d4016;
  --military-tan: #8b7355;
  --desert-sand: #c19a6b;
  --gunmetal: #2c3e50;
  --steel-gray: #5d6d7e;
  --smoke-gray: #95a5a6;
  --light-gray: #bdc3c7;
  --danger-red: #e74c3c;
  --warning-orange: #e67e22;
  --tactical-blue: #3498db;
  --night-vision: #27ae60;
  --dark-black: #1c1c1c;
  --charcoal: #34495e;
  --off-white: #ecf0f1;
  --pure-white: #ffffff;

  /* Nuevos colores modernos */
  --neon-green: #00ff88;
  --electric-blue: #0080ff;
  --cyber-purple: #8b5cf6;
  --gold-accent: #ffd700;
  --gradient-primary: linear-gradient(135deg, var(--olive-green), var(--tactical-blue));
  --gradient-secondary: linear-gradient(135deg, var(--charcoal), var(--gunmetal));
  --gradient-accent: linear-gradient(135deg, var(--desert-sand), var(--military-tan));

  /* Sombras y efectos */
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.25);
  --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.3);

  /* Borders y efectos glass */
  --border-radius: 16px;
  --border-radius-small: 8px;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

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

body {
  background: linear-gradient(135deg, var(--dark-black) 0%, var(--charcoal) 50%, var(--gunmetal) 100%);
  color: var(--off-white);
  min-height: 100vh;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.showed {
  display: block;
}
.login{
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
}

/* ===== HEADER & NAVIGATION ===== */

.header {
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  height: 100%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--olive-green);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#logoDelta {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  object-fit: contain;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.optionList {
  display: flex;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem;
}

.option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  background: transparent;
  color: var(--light-gray);
  border: 1px solid transparent;
  user-select: none;
  width: 100%;
  text-decoration: none;
}

.option:hover {
  background: var(--glass-bg);
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.option.active {
  background: var(--gradient-primary);
  color: var(--pure-white);
  box-shadow: var(--shadow-medium);
  border-color: var(--tactical-blue);
}

.option-icon {
  font-size: 1rem;
}

.option-text {
  font-weight: 600;
}

/* ===== MAIN CONTENT ===== */

.content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caseType {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
  width: 100%;
  max-width: 1200px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* ===== HOME PAGE ===== */

.home-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-main {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-green), var(--electric-blue), var(--cyber-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--desert-sand);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--steel-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--tactical-blue);
}

.feature-card.special {
  border: 2px solid var(--gold-accent);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), var(--glass-bg));
}

.feature-card.special::before {
  background: linear-gradient(90deg, var(--gold-accent), var(--warning-orange));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--light-gray);
  line-height: 1.5;
  font-size: 0.95rem;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  color: white;
}

/* ===== SHUFFLE SECTIONS ===== */

.shuffle-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shuffle-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.shuffle-description {
  font-size: 1.1rem;
  color: var(--steel-gray);
}

.shuffle-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.shuffle-display {
  width: 100%;
  max-width: 400px;
}

.shuffle-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.shuffle-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.shuffle-element {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.shuffle-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: var(--charcoal);
}

.shuffle-card:hover .shuffle-image {
  transform: scale(1.05);
}

.shuffle-info {
  margin-top: 1rem;
}

.shuffle-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--glass-border);
}

.shuffle-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shuffle-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, var(--tactical-blue), var(--olive-green));
}

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

.btn-icon {
  font-size: 1.3rem;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.shuffle-btn:hover .btn-icon {
  animation-duration: 0.5s;
}

.btn-text {
  font-weight: 700;
}

/* ===== COMPLETE SECTION ===== */

.complete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.complete-item {
  display: flex;
  justify-content: center;
}

.complete-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  position: relative;
}

.complete-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--tactical-blue);
}

.complete-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.complete-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.complete-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--border-radius-small);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
  background: var(--charcoal);
}

.complete-card:hover .complete-image {
  transform: scale(1.1);
}

.complete-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  background: var(--glass-bg);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-small);
  border: 1px solid var(--glass-border);
}

.complete-action {
  text-align: center;
}

.shuffle-btn-main {
  background: linear-gradient(135deg, var(--gold-accent), var(--warning-orange));
  border: none;
  border-radius: 25px;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-black);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-heavy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.shuffle-btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
  border-color: var(--pure-white);
  background: linear-gradient(135deg, var(--warning-orange), var(--gold-accent));
}

.btn-icon-main {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.btn-text-main {
  font-size: 1.2rem;
  font-weight: 900;
}

.btn-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== ABOUT US SECTION ===== */

#containerAbout {
  overflow-y: auto;
  padding: 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.about-main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--desert-sand);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--steel-gray);
  margin: 0;
}

.about-content {
  max-width: 100%;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--steel-gray);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-section-title {
  font-size: 1.5rem;
  color: var(--desert-sand);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}

.developers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.dev-card {
  background: linear-gradient(135deg, var(--gunmetal), var(--charcoal));
  border: 2px solid var(--olive-green);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.dev-card:hover {
  transform: translateY(-5px);
  border-color: var(--tactical-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dev-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--olive-green);
  margin: 0 auto 0.8rem;
  display: block;
  transition: all 0.3s ease;
}

.dev-card:hover .dev-avatar {
  border-color: var(--tactical-blue);
  transform: scale(1.1);
}

.dev-name {
  color: var(--off-white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.dev-role {
  color: var(--desert-sand);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.dev-link {
  display: inline-block;
  background: linear-gradient(45deg, #333, #000);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dev-link:hover {
  background: linear-gradient(45deg, #000, #333);
  transform: scale(1.05);
}

.streamers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.streamer-card {
  background: linear-gradient(135deg, var(--charcoal), var(--gunmetal));
  border: 2px solid var(--steel-gray);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.streamer-card:hover {
  transform: translateY(-3px);
  border-color: #9146ff;
  box-shadow: 0 6px 15px rgba(145, 70, 255, 0.3);
}

.streamer-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: block;
  border-radius: 5px;
}

.streamer-name {
  color: var(--off-white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.streamer-link {
  display: inline-block;
  background: linear-gradient(45deg, #9146ff, #7c3aed);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.streamer-link:hover {
  background: linear-gradient(45deg, #7c3aed, #9146ff);
  transform: scale(1.05);
}

.project-description {
  text-align: center;
}

.project-description p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(74, 93, 35, 0.2);
  border: 1px solid var(--olive-green);
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--off-white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(74, 93, 35, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.2rem;
}

.contador{
  position: fixed;
  right: 5%;
  top: 95%;
  width: 5.5%;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--dark-black);
  border-top: 2px solid var(--olive-green);
  margin-top: auto;
}

.footerContainer {
  padding: 2rem;
  color: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: var(--steel-gray);
}

.github-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.github-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.github-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--olive-green);
  transition: all 0.3s ease;
}

.github-avatar:hover {
  transform: scale(1.1);
  border-color: var(--tactical-blue);
}

.github-name {
  color: var(--off-white);
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}

.github-username {
  color: var(--steel-gray);
  font-size: 0.8rem;
}

.team-section {
  text-align: center;
}

.team-title {
  color: var(--desert-sand);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.team-members {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-members a {
  text-decoration: none;
}

.team-member {
  color: var(--light-gray);
  padding: 0.5rem 1rem;
  border: 1px solid var(--steel-gray);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.team-member:hover {
  background-color: var(--olive-green);
  color: var(--off-white);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
  .title-main {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .complete-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Ajustes específicos para diferentes tipos de elementos */
#containerArma .shuffle-element,
#containerMapa .shuffle-element {
  width: 250px;
  height: 180px;
}

#containerArma .shuffle-image,
#containerMapa .shuffle-image {
  object-fit: contain;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1rem;
  }

  .nav-brand .brand-text {
    display: none;
  }

  .optionList {
    gap: 0.3rem;
    padding: 0.3rem;
  }

  .option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .option-text {
    display: none;
  }

  .content {
    padding: 1rem;
  }

  .container {
    padding: 1rem;
  }

  .title-main {
    font-size: 2.5rem;
  }

  .title-sub {
    font-size: 1.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 2px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .complete-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #containerArma .shuffle-element,
  #containerMapa .shuffle-element {
    width: 200px;
    height: 150px;
  }

  .shuffle-element {
    width: 180px;
    height: 180px;
  }

  .developers-container,
  .streamers-container {
    grid-template-columns: 1fr;
  }

  .github-section {
    flex-direction: column;
    gap: 1rem;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
  }

  .content {
    margin-top: 70px;
  }

  .title-main {
    font-size: 2rem;
  }

  .caseType {
    font-size: 2rem;
  }

  .shuffle-title {
    font-size: 2rem;
  }

  #containerArma .shuffle-element,
  #containerMapa .shuffle-element {
    width: 180px;
    height: 130px;
  }

  .shuffle-element {
    width: 150px;
    height: 150px;
  }

  .complete-grid {
    grid-template-columns: 1fr;
  }

  .shuffle-btn,
  .shuffle-btn-main {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
  }

  .content {
    margin-top: 70px;
  }

  .title-main {
    font-size: 2rem;
  }

  .caseType {
    font-size: 2rem;
  }

  .shuffle-title {
    font-size: 2rem;
  }

  .shuffle-element {
    width: 120px;
    height: 120px;
  }

  .complete-grid {
    grid-template-columns: 1fr;
  }

  .shuffle-btn,
  .shuffle-btn-main {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.container.showed {
  animation: fadeInUp 0.6s ease-out;
}

.shuffle-btn:hover {
  animation: pulse 1s infinite;
}

/* ===== CUSTOM SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-black);
}

::-webkit-scrollbar-thumb {
  background: var(--olive-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tactical-blue);
}