/* P898 Mobile Gaming Platform - Layout Styles */
/* Color Palette: #9AFF9A (Bright Green) | #00FF00 (Pure Green) | #0A0A0A (Near Black) */
/* All CSS classes use wf4d9- prefix to avoid conflicts */

/* CSS Variables */
:root {
  --wf4d9-primary: #00FF00;
  --wf4d9-secondary: #9AFF9A;
  --wf4d9-accent: #32CD32;
  --wf4d9-dark: #0A0A0A;
  --wf4d9-bg: #0F0F0F;
  --wf4d9-surface: #1A1A1A;
  --wf4d9-text: #FFFFFF;
  --wf4d9-text-secondary: #B0B0B0;
  --wf4d9-border: #2A2A2A;
  --wf4d9-shadow: rgba(0, 255, 0, 0.2);
  --wf4d9-shadow-dark: rgba(0, 0, 0, 0.5);
  --wf4d9-gradient-primary: linear-gradient(135deg, #00FF00, #9AFF9A);
  --wf4d9-gradient-secondary: linear-gradient(135deg, #32CD32, #00FF00);
  --wf4d9-font-xs: 1.0rem;
  --wf4d9-font-sm: 1.2rem;
  --wf4d9-font-md: 1.4rem;
  --wf4d9-font-lg: 1.6rem;
  --wf4d9-font-xl: 2.0rem;
  --wf4d9-font-xxl: 2.4rem;
  --wf4d9-spacing-xs: 0.4rem;
  --wf4d9-spacing-sm: 0.8rem;
  --wf4d9-spacing-md: 1.6rem;
  --wf4d9-spacing-lg: 2.4rem;
  --wf4d9-spacing-xl: 3.2rem;
  --wf4d9-border-radius: 8px;
  --wf4d9-transition: all 0.3s ease;
  --wf4d9-max-width: 430px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--wf4d9-font-md);
  line-height: 1.5;
  color: var(--wf4d9-text);
  background-color: var(--wf4d9-bg);
  overflow-x: hidden;
}

.wf4d9-wrapper {
  max-width: var(--wf4d9-max-width);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: var(--wf4d9-bg);
}

.wf4d9-container {
  padding: 0 var(--wf4d9-spacing-md);
  margin: 0 auto;
  max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--wf4d9-spacing-sm);
  color: var(--wf4d9-text);
}

h1 { font-size: var(--wf4d9-font-xxl); }
h2 { font-size: var(--wf4d9-font-xl); }
h3 { font-size: var(--wf4d9-font-lg); }
h4 { font-size: var(--wf4d9-font-md); }

p {
  margin-bottom: var(--wf4d9-spacing-sm);
  line-height: 1.6;
  color: var(--wf4d9-text-secondary);
}

a {
  color: var(--wf4d9-primary);
  text-decoration: none;
  transition: var(--wf4d9-transition);
}

a:hover {
  color: var(--wf4d9-secondary);
  text-decoration: underline;
}

/* Header Styles */
.wf4d9-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--wf4d9-max-width);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wf4d9-border);
  z-index: 1000;
  padding: var(--wf4d9-spacing-sm) 0;
  transition: var(--wf4d9-transition);
}

.wf4d9-header.wf4d9-scrolled {
  box-shadow: 0 2px 20px var(--wf4d9-shadow-dark);
}

.wf4d9-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--wf4d9-spacing-md);
}

.wf4d9-logo {
  display: flex;
  align-items: center;
  font-size: var(--wf4d9-font-lg);
  font-weight: 700;
  color: var(--wf4d9-primary);
  text-decoration: none;
}

.wf4d9-logo-icon {
  width: 28px;
  height: 28px;
  margin-right: var(--wf4d9-spacing-sm);
  border-radius: 4px;
}

.wf4d9-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--wf4d9-spacing-sm);
}

.wf4d9-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.wf4d9-hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--wf4d9-primary);
  transition: var(--wf4d9-transition);
}

.wf4d9-hamburger.wf4d9-active .wf4d9-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.wf4d9-hamburger.wf4d9-active .wf4d9-hamburger-line:nth-child(2) {
  opacity: 0;
}

.wf4d9-hamburger.wf4d9-active .wf4d9-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.wf4d9-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--wf4d9-transition);
}

.wf4d9-menu-overlay.wf4d9-active {
  opacity: 1;
  visibility: visible;
}

.wf4d9-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--wf4d9-surface);
  z-index: 1000;
  transition: var(--wf4d9-transition);
  padding: var(--wf4d9-spacing-xl) var(--wf4d9-spacing-md);
  border-left: 1px solid var(--wf4d9-border);
}

.wf4d9-mobile-menu.wf4d9-active {
  right: 0;
}

.wf4d9-nav-list {
  list-style: none;
  margin-top: var(--wf4d9-spacing-xl);
}

.wf4d9-nav-item {
  margin-bottom: var(--wf4d9-spacing-md);
}

.wf4d9-nav-link {
  display: block;
  padding: var(--wf4d9-spacing-sm);
  color: var(--wf4d9-text);
  font-size: var(--wf4d9-font-lg);
  border-radius: var(--wf4d9-border-radius);
  transition: var(--wf4d9-transition);
}

.wf4d9-nav-link:hover {
  background: var(--wf4d9-gradient-primary);
  color: var(--wf4d9-dark);
  text-decoration: none;
  transform: translateX(5px);
}

/* Button Styles */
.wf4d9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--wf4d9-spacing-sm) var(--wf4d9-spacing-md);
  font-size: var(--wf4d9-font-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--wf4d9-border-radius);
  cursor: pointer;
  transition: var(--wf4d9-transition);
  min-height: 44px;
  background: var(--wf4d9-gradient-primary);
  color: var(--wf4d9-dark);
}

.wf4d9-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--wf4d9-shadow);
  text-decoration: none;
  color: var(--wf4d9-dark);
}

.wf4d9-btn-primary {
  background: var(--wf4d9-gradient-primary);
  color: var(--wf4d9-dark);
}

.wf4d9-btn-secondary {
  background: var(--wf4d9-gradient-secondary);
  color: var(--wf4d9-dark);
}

.wf4d9-btn-small {
  padding: var(--wf4d9-spacing-xs) var(--wf4d9-spacing-sm);
  font-size: var(--wf4d9-font-xs);
  min-height: 36px;
}

.wf4d9-btn-large {
  padding: var(--wf4d9-spacing-md) var(--wf4d9-spacing-lg);
  font-size: var(--wf4d9-font-lg);
  min-height: 56px;
  font-weight: 700;
}

/* Main Content */
.wf4d9-main {
  margin-top: 70px;
  padding-bottom: 80px;
  min-height: calc(100vh - 150px);
}

/* Hero Section */
.wf4d9-hero {
  background: var(--wf4d9-gradient-primary);
  color: var(--wf4d9-dark);
  padding: var(--wf4d9-spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wf4d9-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(10,10,10,0.1)"/><circle cx="80" cy="30" r="3" fill="rgba(10,10,10,0.1)"/><circle cx="60" cy="70" r="2" fill="rgba(10,10,10,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.wf4d9-hero-content {
  position: relative;
  z-index: 1;
}

.wf4d9-hero-title {
  font-size: var(--wf4d9-font-xxl);
  margin-bottom: var(--wf4d9-spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wf4d9-hero-subtitle {
  font-size: var(--wf4d9-font-lg);
  margin-bottom: var(--wf4d9-spacing-lg);
  opacity: 0.9;
}

/* Carousel Styles */
.wf4d9-carousel {
  position: relative;
  margin: var(--wf4d9-spacing-lg) 0;
  overflow: hidden;
  border-radius: var(--wf4d9-border-radius);
  box-shadow: 0 4px 20px var(--wf4d9-shadow-dark);
}

.wf4d9-carousel-container {
  position: relative;
  width: 100%;
  height: 200px;
}

.wf4d9-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.wf4d9-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wf4d9-border-radius);
}

.wf4d9-carousel-indicators {
  position: absolute;
  bottom: var(--wf4d9-spacing-sm);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--wf4d9-spacing-xs);
  z-index: 2;
}

.wf4d9-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--wf4d9-transition);
}

.wf4d9-carousel-indicator.wf4d9-active {
  background: var(--wf4d9-primary);
  box-shadow: 0 0 10px var(--wf4d9-shadow);
}

/* Game Grid */
.wf4d9-games-section {
  margin: var(--wf4d9-spacing-xl) 0;
  background: var(--wf4d9-surface);
  border-radius: var(--wf4d9-border-radius);
  padding: var(--wf4d9-spacing-lg);
}

.wf4d9-section-title {
  text-align: center;
  margin-bottom: var(--wf4d9-spacing-lg);
  color: var(--wf4d9-text);
  font-size: var(--wf4d9-font-xl);
}

.wf4d9-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--wf4d9-spacing-sm);
  margin-bottom: var(--wf4d9-spacing-lg);
}

.wf4d9-game-card {
  background: var(--wf4d9-bg);
  border: 1px solid var(--wf4d9-border);
  border-radius: var(--wf4d9-border-radius);
  padding: var(--wf4d9-spacing-xs);
  text-align: center;
  cursor: pointer;
  transition: var(--wf4d9-transition);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wf4d9-game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
  transition: left 0.5s;
}

.wf4d9-game-card:hover::before {
  left: 100%;
}

.wf4d9-game-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px var(--wf4d9-shadow);
  border-color: var(--wf4d9-primary);
}

.wf4d9-game-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: var(--wf4d9-spacing-xs);
}

.wf4d9-game-name {
  font-size: var(--wf4d9-font-xs);
  font-weight: 600;
  color: var(--wf4d9-text);
  line-height: 1.2;
}

/* Content Sections */
.wf4d9-content-section {
  margin: var(--wf4d9-spacing-xl) 0;
  padding: var(--wf4d9-spacing-lg);
  background: var(--wf4d9-surface);
  border-radius: var(--wf4d9-border-radius);
  border: 1px solid var(--wf4d9-border);
}

.wf4d9-content-title {
  font-size: var(--wf4d9-font-xl);
  margin-bottom: var(--wf4d9-spacing-md);
  text-align: center;
  color: var(--wf4d9-text);
}

.wf4d9-content-text {
  line-height: 1.6;
  color: var(--wf4d9-text-secondary);
}

/* Feature Grid */
.wf4d9-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf4d9-spacing-md);
  margin: var(--wf4d9-spacing-lg) 0;
}

.wf4d9-feature-card {
  background: var(--wf4d9-bg);
  border: 1px solid var(--wf4d9-border);
  border-radius: var(--wf4d9-border-radius);
  padding: var(--wf4d9-spacing-lg);
  text-align: center;
  transition: var(--wf4d9-transition);
}

.wf4d9-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--wf4d9-shadow);
  border-color: var(--wf4d9-primary);
}

.wf4d9-feature-icon {
  font-size: var(--wf4d9-font-xl);
  color: var(--wf4d9-primary);
  margin-bottom: var(--wf4d9-spacing-sm);
}

.wf4d9-feature-title {
  font-size: var(--wf4d9-font-lg);
  margin-bottom: var(--wf4d9-spacing-sm);
  color: var(--wf4d9-text);
}

.wf4d9-feature-text {
  color: var(--wf4d9-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--wf4d9-spacing-md);
}

/* Statistics */
.wf4d9-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wf4d9-spacing-md);
  margin: var(--wf4d9-spacing-lg) 0;
}

.wf4d9-stat-card {
  background: var(--wf4d9-gradient-secondary);
  color: var(--wf4d9-dark);
  border-radius: var(--wf4d9-border-radius);
  padding: var(--wf4d9-spacing-md);
  text-align: center;
}

.wf4d9-stat-number {
  font-size: var(--wf4d9-font-xxl);
  font-weight: 700;
  color: var(--wf4d9-dark);
  display: block;
}

.wf4d9-stat-label {
  font-size: var(--wf4d9-font-sm);
  color: var(--wf4d9-dark);
  margin-top: var(--wf4d9-spacing-xs);
  opacity: 0.8;
}

/* Footer */
.wf4d9-footer {
  background: var(--wf4d9-dark);
  color: var(--wf4d9-text);
  padding: var(--wf4d9-spacing-xl) 0;
  margin-top: var(--wf4d9-spacing-xl);
  border-top: 1px solid var(--wf4d9-border);
}

.wf4d9-footer-content {
  text-align: center;
}

.wf4d9-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wf4d9-spacing-md);
  margin-bottom: var(--wf4d9-spacing-lg);
}

.wf4d9-footer-link {
  color: var(--wf4d9-secondary);
  font-size: var(--wf4d9-font-sm);
  padding: var(--wf4d9-spacing-xs);
  border-radius: var(--wf4d9-border-radius);
  transition: var(--wf4d9-transition);
}

.wf4d9-footer-link:hover {
  background: var(--wf4d9-primary);
  color: var(--wf4d9-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.wf4d9-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wf4d9-spacing-sm);
  margin: var(--wf4d9-spacing-lg) 0;
}

.wf4d9-partner-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.6;
  transition: var(--wf4d9-transition);
  border-radius: 4px;
}

.wf4d9-partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.wf4d9-copyright {
  font-size: var(--wf4d9-font-xs);
  color: var(--wf4d9-text-secondary);
  margin-top: var(--wf4d9-spacing-lg);
}

/* Bottom Navigation */
.wf4d9-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--wf4d9-max-width);
  background: var(--wf4d9-surface);
  border-top: 1px solid var(--wf4d9-border);
  z-index: 1000;
  height: 60px;
}

.wf4d9-bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 var(--wf4d9-spacing-sm);
}

.wf4d9-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--wf4d9-text-secondary);
  transition: var(--wf4d9-transition);
  padding: var(--wf4d9-spacing-xs);
  border-radius: var(--wf4d9-border-radius);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.wf4d9-bottom-nav-item:hover,
.wf4d9-bottom-nav-item.wf4d9-nav-active {
  color: var(--wf4d9-primary);
  background: rgba(0, 255, 0, 0.1);
  transform: scale(1.05);
  text-decoration: none;
}

.wf4d9-nav-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.wf4d9-nav-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

/* Utility Classes */
.wf4d9-text-center { text-align: center; }
.wf4d9-text-left { text-align: left; }
.wf4d9-text-right { text-align: right; }

.wf4d9-mt-1 { margin-top: var(--wf4d9-spacing-xs); }
.wf4d9-mt-2 { margin-top: var(--wf4d9-spacing-sm); }
.wf4d9-mt-3 { margin-top: var(--wf4d9-spacing-md); }
.wf4d9-mt-4 { margin-top: var(--wf4d9-spacing-lg); }

.wf4d9-mb-1 { margin-bottom: var(--wf4d9-spacing-xs); }
.wf4d9-mb-2 { margin-bottom: var(--wf4d9-spacing-sm); }
.wf4d9-mb-3 { margin-bottom: var(--wf4d9-spacing-md); }
.wf4d9-mb-4 { margin-bottom: var(--wf4d9-spacing-lg); }

.wf4d9-hidden { display: none; }
.wf4d9-visible { display: block; }

/* Animation Classes */
.wf4d9-animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.wf4d9-animate-on-scroll.wf4d9-animated {
  opacity: 1;
  transform: translateY(0);
}

.wf4d9-fade-in {
  animation: wf4d9FadeIn 0.5s ease forwards;
}

@keyframes wf4d9FadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wf4d9-pulse {
  animation: wf4d9Pulse 2s infinite;
}

@keyframes wf4d9Pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Tooltip */
.wf4d9-tooltip {
  position: absolute;
  background: var(--wf4d9-dark);
  color: var(--wf4d9-text);
  padding: var(--wf4d9-spacing-xs) var(--wf4d9-spacing-sm);
  border-radius: var(--wf4d9-border-radius);
  font-size: var(--wf4d9-font-xs);
  z-index: 1001;
  pointer-events: none;
  border: 1px solid var(--wf4d9-primary);
}

/* Lazy Loading */
.wf4d9-lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.wf4d9-lazy.loaded {
  opacity: 1;
}

/* Back to Top Button */
.wf4d9-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--wf4d9-gradient-primary);
  color: var(--wf4d9-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--wf4d9-transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf4d9-back-to-top.wf4d9-visible {
  opacity: 1;
  visibility: visible;
}

.wf4d9-back-to-top:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 15px var(--wf4d9-shadow);
}

/* Notifications */
.wf4d9-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--wf4d9-surface);
  color: var(--wf4d9-text);
  padding: var(--wf4d9-spacing-md);
  border-radius: var(--wf4d9-border-radius);
  border: 1px solid var(--wf4d9-border);
  z-index: 1001;
  transform: translateX(100%);
  transition: var(--wf4d9-transition);
  max-width: 300px;
}

.wf4d9-notification.wf4d9-show {
  transform: translateX(0);
}

.wf4d9-notification.wf4d9-success {
  border-color: var(--wf4d9-primary);
  background: rgba(0, 255, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 320px) {
  :root {
    --wf4d9-font-xs: 0.9rem;
    --wf4d9-font-sm: 1.1rem;
    --wf4d9-font-md: 1.3rem;
    --wf4d9-spacing-sm: 0.6rem;
    --wf4d9-spacing-md: 1.2rem;
  }

  .wf4d9-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wf4d9-game-icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 376px) {
  .wf4d9-games-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .wf4d9-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wf4d9-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dark Theme Support */
.wf4d9-dark-theme {
  --wf4d9-bg: #000000;
  --wf4d9-surface: #111111;
  --wf4d9-text: #FFFFFF;
  --wf4d9-text-secondary: #CCCCCC;
  --wf4d9-border: #333333;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --wf4d9-shadow: rgba(0, 255, 0, 0.4);
    --wf4d9-border: #444444;
  }

  .wf4d9-btn {
    border: 2px solid var(--wf4d9-dark);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .wf4d9-header,
  .wf4d9-bottom-nav,
  .wf4d9-mobile-menu,
  .wf4d9-menu-overlay,
  .wf4d9-back-to-top {
    display: none !important;
  }

  .wf4d9-main {
    margin-top: 0;
    padding-bottom: 0;
  }
}