<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Poppins";
  src: url(/assets/fonts/Poppins/Poppins-Regular.ttf);
}

:root {
  --color-bg: linear-gradient(135deg, #ff0066, #ffcc00); /* Ñ€Ð¾Ð¶ÐµÐ²Ð¸Ð¹ â†’ Ð¶Ð¾Ð²Ñ‚Ð¸Ð¹ */
  --color-hero: linear-gradient(45deg, #39ff14, #00bcd4); /* Ð½ÐµÐ¾Ð½-Ð·ÐµÐ»ÐµÐ½Ð¸Ð¹ â†’ Ð±Ñ–Ñ€ÑŽÐ·Ð¾Ð²Ð¸Ð¹ */
  --color-text: #ffffff; /* Ñ‡Ð¸ÑÑ‚Ð¾ Ð±Ñ–Ð»Ð¸Ð¹ */
  --color-text-secondary: rgba(255, 255, 255, 0.5); /* Ð½Ð°Ð¿Ñ–Ð²Ð¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¸Ð¹ Ð±Ñ–Ð»Ð¸Ð¹ */
  --color-border: rgba(255, 255, 255, 0.15); /* Ð¼â€™ÑÐºÐ° Ð¼ÐµÐ¶Ð° */
  --color-button: #111111; /* Ð¼Ð°Ð¹Ð¶Ðµ Ñ‡Ð¾Ñ€Ð½Ð¸Ð¹ */
  --color-button-hover: #333333; /* Ñ‚ÐµÐ¼Ð½Ð¾-ÑÑ–Ñ€Ð¸Ð¹ */
  --color-button-no: #ff1744; /* ÐºÐ¸ÑÐ»Ð¾Ñ‚Ð½Ð¾-Ñ‡ÐµÑ€Ð²Ð¾Ð½Ð¸Ð¹ */
  --color-button-no-hover: #ff4569; /* ÑÐ²Ñ–Ñ‚Ð»Ñ–ÑˆÐ¸Ð¹ Ñ‡ÐµÑ€Ð²Ð¾Ð½Ð¸Ð¹ */
  --color-primary: #ff3cac; /* Ñ€Ð¾Ð¶ÐµÐ²Ð¾-Ð½ÐµÐ¾Ð½Ð¾Ð²Ð¸Ð¹ */
  --color-secondary: #00f0ff; /* ÑÑÐºÑ€Ð°Ð²Ð¸Ð¹ Ð±Ð»Ð°ÐºÐ¸Ñ‚Ð½Ð¸Ð¹ */
  --color-accent: #ffeb3b; /* ÐºÐ¸ÑÐ»Ð¾Ñ‚Ð½Ð¾-Ð¶Ð¾Ð²Ñ‚Ð¸Ð¹ */
  --main-bg: #0a0a0a; /* Ð´ÑƒÐ¶Ðµ Ñ‚ÐµÐ¼Ð½Ð¸Ð¹ Ñ„Ð¾Ð½ */

  /* Responsive Container Sizes */
  --container-max-width: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --section-spacing: clamp(2rem, 6vw, 4rem);

  /* Fluid Typography */
  --fs-hero: clamp(1.5rem, 4vw, 2.5rem);
  --fs-h1: clamp(1.5rem, 3.5vw, 2.5rem);
  --fs-h2: clamp(1.3rem, 2.5vw, 1.8rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.2rem);
  --fs-body: clamp(0.9rem, 1.5vw, 1rem);
  --fs-small: clamp(0.8rem, 1.2vw, 0.9rem);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--main-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Container System */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
}

/* Overlay */
.overlay {
  position: fixed !important;
  inset: 0 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  z-index: 999 !important;
  display: none !important;
  backdrop-filter: blur(5px) !important;
}

/* Age Verification Banner */
.banner {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: var(--container-padding);
}

.banner_block {
  background: var(--color-bg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: min(500px, 90vw);
  width: 100%;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

@keyframes modalPop {
  0% {
      transform: scale(0.95);
      opacity: 0;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

.banner_title {
  font-size: var(--fs-h1);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.banner_buttons {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.banner_buttons button {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border: none;
  border-radius: 0.75rem;
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-button);
  color: var(--color-primary);
}

.btn-no {
  background: var(--color-button-no);
  color: var(--color-text);
}

.banner_buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--color-button-hover);
}

.btn-no:hover {
  background: var(--color-button-no-hover);
}

.banner_atent {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.close-button {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  transform: rotate(90deg);
}

/* Alert */
.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  left: 20px;
  max-width: 400px;
  margin-left: auto;
  padding: 1rem 2rem;
  background: var(--color-button-no);
  color: white;
  border-radius: 0.5rem;
  z-index: 1001;
  animation: slideIn 0.3s ease-out;
  display: none;
  font-size: var(--fs-small);
  text-align: center;
}

@keyframes slideIn {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: 1rem;
}

.logo h1 {
  background: var(--color-bg);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: clamp(24px, 5vw, 36px);
  margin: 0;
}

header a {
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-shrink: 0;
}

.btn {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: var(--fs-small);
  white-space: nowrap;
}

.btn-register {
  background: var(--color-bg);
  color: white;
}

.btn-login {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: var(--container-padding);
}

.modal.modal-open {
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: modalPop 0.3s ease-out;
  border: 1px solid var(--color-border);
}

.modal-content h2 {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: var(--fs-h3);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-text-secondary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-modal:hover {
  color: var(--color-text);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--fs-small);
}

.form-group input {
  width: 100%;
  padding: clamp(0.625rem, 2vw, 0.75rem);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  font-size: var(--fs-body);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(125, 116, 54, 0.2);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.submit-btn {
  width: 100%;
  padding: clamp(0.875rem, 2.5vw, 1rem);
  background: var(--color-bg);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 116, 54, 0.3);
}

.login-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--color-secondary);
}

/* Casino Banner */
.casino-banner {
  display: flex;
  width: 100%;
  max-width: var(--container-max-width);
  min-height: clamp(300px, 50vw, 400px);
  background: linear-gradient(135deg, #1a2238 0%, #2e3a59 50%, #1a2238 100%);
  overflow: hidden;
  position: relative;
  margin: var(--section-spacing) auto;
  border-radius: 1rem;
}

.banner-left {
  flex: 2;
  display: flex;
  align-items: center;
  padding: var(--container-padding);
  position: relative;
  min-width: 0;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.text-content {
  flex: 1;
  z-index: 2;
  min-width: 0;
}

.main-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.main-title span {
  display: block;
  margin-bottom: 0.2rem;
}

.highlight-text {
  background: var(--color-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.7rem, 4.5vw, 2.2rem);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.normal-text {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 0;
}

.slot-image {
  width: 100%;
  max-width: clamp(200px, 30vw, 400px);
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.banner-right {
  flex: 1;
  min-width: clamp(250px, 30vw, 300px);
  padding: var(--container-padding);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(10px);
  border-left: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.recent-wins {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wins-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
}

.wins-header h3 {
  color: var(--color-accent);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wins-arrow {
  color: var(--color-accent);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.wins-arrow:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}

.wins-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.2rem);
  flex: 1;
}

.win-item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.win-item:hover {
  transform: translateX(5px);
  border-color: var(--color-accent);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.game-thumbnail {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.win-details {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.game-name {
  color: #fff;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.win-amount {
  color: var(--color-accent);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Game Categories */
#cats {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cat {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.cat h2 {
  font-size: var(--fs-h2);
  color: var(--color-text);
  margin-bottom: 1rem;
  display: inline-block;
}

.cat &gt; span {
  float: right;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
  line-height: 1;
  font-size: var(--fs-small);
  margin-top: 0.5rem;
}

.cat &gt; span:hover {
  color: var(--color-secondary);
}

.cat-row {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  overflow-x: auto;
  padding-bottom: 1rem;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}

.cat-row::-webkit-scrollbar {
  height: 8px;
}

.cat-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cat-row::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.lobby-game {
  min-width: clamp(140px, 20vw, 200px);
  cursor: pointer;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.lobby-game:hover {
  transform: translateY(-5px);
}

.lobby-game img {
  width: 100%;
  height: clamp(180px, 25vw, 280px);
  object-fit: cover;
  border-radius: 0.75rem;
}

.game-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.lobby-game:hover .game-hover {
  opacity: 1;
}

.lobby-game p {
  color: var(--color-text);
  margin-top: 0.5rem;
  font-size: var(--fs-small);
  text-align: center;
  padding: 0 0.5rem;
  line-height: 1.3;
}

/* Content Pages Styles */
.mid-sect {
  width: 100%;
  max-width: var(--container-max-width);
  margin: var(--section-spacing) auto;
  padding: 0 var(--container-padding);
}

.title-gradient {
  text-align: center;
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 4vw, 2rem) 0;
  background: var(--color-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(125, 116, 54, 0.3);
}

.title-gradient h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.base-content {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  line-height: 1.8;
}

.base-content h2 {
  color: #7d7436;
  font-size: var(--fs-h2);
  font-weight: 600;
  margin: clamp(1.5rem, 4vw, 2rem) 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7d7436;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.base-content h3 {
  color: #ffffff;
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.base-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body);
  margin-bottom: 1rem;
  text-align: justify;
}

.base-content p strong {
  color: #7d7436;
  font-weight: 600;
}

.base-content ul,
.base-content ol {
  margin: 1rem 0;
  padding-left: clamp(1rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
}

.base-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: var(--fs-body);
}

.base-content li strong {
  color: #7d7436;
}

.base-content a {
  color: #29603a;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.base-content a:hover {
  color: #7d7436;
  border-bottom-color: #7d7436;
}

/* Footer */
footer {
  background: #0a0a0a;
  padding: clamp(1.5rem, 4vw, 2rem) 0;
  margin-top: var(--section-spacing);
}

#footer-link-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border);
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.footer-links-header {
  text-align: center;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: var(--fs-body);
}

.footer-links-list {
  display: flex;
  gap: clamp(15px, 5vw, 40px);
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: var(--fs-small);
}

.footer-links-list a:hover {
  color: var(--color-text);
}

.footer-row {
  display: flex;
  justify-content: center;
  padding: clamp(15px, 3vw, 20px) 0;
  background-color: transparent;
  width: 100%;
}

.footer__help { 
  justify-content: center;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(8px, 3vw, 20px);
  flex-wrap: wrap;
}

.footer__help li {
  display: flex;
  align-items: center;
}

.footer__help img,
.footer__help svg {
  max-height: clamp(32px, 6vw, 50px);
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.footer__help a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(32px, 6vw, 50px);
  min-width: clamp(32px, 6vw, 50px);
  filter: brightness(0) invert(0.8);
}

.footer__help a:hover img,
.footer__help a:hover svg {
  filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .casino-banner {
      flex-direction: column;
      min-height: auto;
  }
  
  .banner-left {
      order: 1;
  }
  
  .banner-right {
      order: 2;
      border-left: none;
      border-top: 2px solid rgba(255, 215, 0, 0.3);
      min-width: auto;
  }
  
  .banner-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
  }
  
  .header-container {
      flex-direction: column;
      gap: 1rem;
  }
  
  .auth-buttons {
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
  }
  
  .btn {
      flex: 1;
      min-width: 120px;
      text-align: center;
  }
}

@media (max-width: 768px) {
  .cat &gt; span {
      float: none;
      display: block;
      text-align: right;
      margin-top: 0;
  }
  
  .lobby-game {
      min-width: clamp(130px, 25vw, 150px);
  }
  
  .footer-links-list {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  #footer-link-container {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 576px) {
  .banner_buttons {
      gap: 0.75rem;
  }
  
  .wins-list {
      gap: 0.75rem;
  }
  
  .base-content p {
      text-align: left;
  }
  
  .base-content ul,
  .base-content ol {
      padding-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
      --container-padding: 1rem;
      --section-spacing: clamp(1.5rem, 4vw, 2rem);
  }
  
  .alert {
      top: 10px;
      right: 10px;
      left: 10px;
      max-width: none;
      margin-left: 0;
  }
  
  .lobby-game {
      min-width: clamp(120px, 30vw, 140px);
  }
  
  .cat-row {
      gap: 0.5rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }</pre></body></html>