/* betpk Layout Styles - Mobile First Design */
/* Color scheme: Primary #DDA0DD, Secondary #2C3E50 */

:root {
  --v23a-primary: #DDA0DD;
  --v23a-secondary: #2C3E50;
  --v23a-bg: #2C3E50;
  --v23a-text: #DDA0DD;
  --v23a-white: #ffffff;
  --v23a-accent: #9B59B6;
  --v23a-hover: #BA55D3;
  --v23a-shadow: rgba(221, 160, 221, 0.3);
  --v23a-border: rgba(221, 160, 221, 0.2);
  --v23a-gradient: linear-gradient(135deg, #DDA0DD 0%, #9B59B6 100%);
  --v23a-dark-gradient: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--v23a-bg);
  color: var(--v23a-text);
  line-height: 1.5;
  font-size: 1.4rem;
  overflow-x: hidden;
}

/* Container and Layout */
.v23a-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.v23a-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 7rem;
}

.v23a-main {
  flex: 1;
  padding-top: 7rem;
}

/* Header Styles */
.v23a-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--v23a-dark-gradient);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px var(--v23a-shadow);
  border-bottom: 1px solid var(--v23a-border);
}

.v23a-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 430px;
  margin: 0 auto;
}

.v23a-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--v23a-text);
  font-weight: 700;
  font-size: 1.8rem;
}

.v23a-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}

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

.v23a-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 4.4rem;
  min-width: 4.4rem;
  text-align: center;
  justify-content: center;
}

.v23a-btn-primary {
  background: var(--v23a-gradient);
  color: var(--v23a-white);
  box-shadow: 0 4px 15px var(--v23a-shadow);
}

.v23a-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--v23a-shadow);
}

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

.v23a-btn-secondary:hover {
  background: var(--v23a-primary);
  color: var(--v23a-white);
}

.v23a-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.v23a-menu-toggle span {
  width: 2.4rem;
  height: 3px;
  background: var(--v23a-primary);
  transition: 0.3s;
}

.v23a-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--v23a-dark-gradient);
  border-top: 1px solid var(--v23a-border);
  display: none;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 15px var(--v23a-shadow);
}

.v23a-nav-menu.v23a-active {
  display: flex;
}

.v23a-nav-menu a {
  color: var(--v23a-text);
  text-decoration: none;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--v23a-border);
  transition: all 0.3s ease;
}

.v23a-nav-menu a:hover {
  background: var(--v23a-primary);
  color: var(--v23a-white);
}

/* Hero Section */
.v23a-hero {
  padding: 2rem 0;
  background: var(--v23a-dark-gradient);
  text-align: center;
}

.v23a-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--v23a-text);
  line-height: 1.2;
}

.v23a-hero p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--v23a-text);
  opacity: 0.9;
}

/* Carousel */
.v23a-carousel {
  position: relative;
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--v23a-shadow);
}

.v23a-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.v23a-carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.v23a-carousel-slide img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  cursor: pointer;
}

.v23a-carousel-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.v23a-carousel-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v23a-carousel-dot.v23a-active {
  background: var(--v23a-primary);
}

/* Game Sections */
.v23a-section {
  padding: 3rem 0;
}

.v23a-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--v23a-text);
  text-align: center;
}

.v23a-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--v23a-primary);
  text-align: center;
}

.v23a-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.v23a-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--v23a-text);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(221, 160, 221, 0.1);
  border: 1px solid var(--v23a-border);
}

.v23a-game-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--v23a-shadow);
  background: rgba(221, 160, 221, 0.2);
}

.v23a-game-item img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.8rem;
}

.v23a-game-item span {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Content Modules */
.v23a-module {
  background: rgba(221, 160, 221, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--v23a-border);
}

.v23a-module h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--v23a-primary);
  text-align: left;
}

.v23a-module p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--v23a-text);
}

.v23a-module ul {
  list-style: none;
  padding: 0;
}

.v23a-module li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--v23a-border);
  color: var(--v23a-text);
}

.v23a-module li:last-child {
  border-bottom: none;
}

/* Promotional Links */
.v23a-promo-link {
  color: var(--v23a-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(221, 160, 221, 0.1);
  border: 1px solid var(--v23a-border);
  margin: 0.5rem;
}

.v23a-promo-link:hover {
  background: var(--v23a-primary);
  color: var(--v23a-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--v23a-shadow);
}

/* Footer */
.v23a-footer {
  background: var(--v23a-dark-gradient);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--v23a-border);
}

.v23a-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.v23a-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.v23a-footer-links a {
  color: var(--v23a-text);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(221, 160, 221, 0.1);
  border: 1px solid var(--v23a-border);
}

.v23a-footer-links a:hover {
  background: var(--v23a-primary);
  color: var(--v23a-white);
}

.v23a-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.v23a-partners img {
  width: 100%;
  height: 4rem;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.3s ease;
}

.v23a-partners img:hover {
  filter: grayscale(0) opacity(1);
}

.v23a-copyright {
  text-align: center;
  color: var(--v23a-text);
  font-size: 1.2rem;
  opacity: 0.8;
  padding-top: 2rem;
  border-top: 1px solid var(--v23a-border);
}

/* Mobile Bottom Navigation */
.v23a-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--v23a-dark-gradient);
  border-top: 1px solid var(--v23a-border);
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  z-index: 999;
  box-shadow: 0 -2px 10px var(--v23a-shadow);
}

.v23a-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--v23a-text);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
  min-width: 4.4rem;
  opacity: 0.8;
}

.v23a-bottom-nav-item:hover,
.v23a-bottom-nav-item.v23a-active {
  color: var(--v23a-primary);
  opacity: 1;
  transform: translateY(-2px);
}

.v23a-bottom-nav-item i {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

/* Responsive Design */
@media (max-width: 430px) {
  .v23a-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .v23a-nav-actions {
    gap: 0.5rem;
  }
  
  .v23a-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  .v23a-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  }
  
  .v23a-footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .v23a-partners {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Animations */
@keyframes v23a-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v23a-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v23a-animate {
  animation: v23a-fadeIn 0.8s ease-out;
}

.v23a-animate-delay {
  animation: v23a-slideUp 0.8s ease-out 0.3s both;
}

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

.v23a-text-left {
  text-align: left;
}

.v23a-text-right {
  text-align: right;
}

.v23a-mb-1 {
  margin-bottom: 1rem;
}

.v23a-mb-2 {
  margin-bottom: 2rem;
}

.v23a-mt-1 {
  margin-top: 1rem;
}

.v23a-mt-2 {
  margin-top: 2rem;
}

.v23a-p-1 {
  padding: 1rem;
}

.v23a-p-2 {
  padding: 2rem;
}

.v23a-hidden {
  display: none;
}

.v23a-visible {
  display: block;
}

/* Special Effects */
.v23a-glow {
  box-shadow: 0 0 20px var(--v23a-shadow);
}

.v23a-pulse {
  animation: v23a-pulse 2s infinite;
}

@keyframes v23a-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--v23a-shadow);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(221, 160, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 160, 221, 0);
  }
} 