/* phswerte Mobile First Casino Gaming Website Styles */
/* All classes use ge0d- prefix to avoid conflicts */

/* CSS Variables */
:root {
  --ge0d-primary: #008B8B;
  --ge0d-secondary: #AD1457;
  --ge0d-accent: #FF1493;
  --ge0d-dark: #1A1A2E;
  --ge0d-dark-alt: #004D40;
  --ge0d-light: #ffffff;
  --ge0d-light-alt: #f8f9fa;
  --ge0d-text: #333333;
  --ge0d-text-light: #666666;
  --ge0d-text-white: #ffffff;
  --ge0d-border: #e0e0e0;
  --ge0d-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --ge0d-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --ge0d-gradient: linear-gradient(135deg, var(--ge0d-primary), var(--ge0d-secondary));
  --ge0d-gradient-alt: linear-gradient(135deg, var(--ge0d-dark), var(--ge0d-dark-alt));
  --ge0d-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ge0d-border-radius: 8px;
  --ge0d-header-height: 60px;
  --ge0d-bottom-nav-height: 60px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ge0d-text);
  background-color: var(--ge0d-light-alt);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.ge0d-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ge0d-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--ge0d-header-height);
  padding-bottom: var(--ge0d-bottom-nav-height);
}

.ge0d-main {
  flex: 1;
  padding: 1rem 0;
}

/* Header Styles */
.ge0d-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ge0d-header-height);
  background: var(--ge0d-gradient);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  box-shadow: var(--ge0d-shadow);
}

.ge0d-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1rem;
}

.ge0d-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ge0d-text-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
}

.ge0d-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ge0d-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ge0d-nav-toggle {
  display: block;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--ge0d-text-white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--ge0d-transition);
  border-radius: 4px;
}

.ge0d-nav-toggle:hover,
.ge0d-nav-toggle:focus {
  background: rgba(255, 255, 255, 0.1);
}

.ge0d-nav-toggle.ge0d-menu-active {
  transform: rotate(90deg);
}

.ge0d-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--ge0d-border-radius);
  cursor: pointer;
  transition: var(--ge0d-transition);
  min-height: 44px;
  white-space: nowrap;
}

.ge0d-btn-primary {
  background: var(--ge0d-primary);
  color: var(--ge0d-text-white);
}

.ge0d-btn-primary:hover,
.ge0d-btn-primary:focus {
  background: #006666;
  transform: translateY(-2px);
  box-shadow: var(--ge0d-shadow-hover);
}

.ge0d-btn-secondary {
  background: var(--ge0d-secondary);
  color: var(--ge0d-text-white);
}

.ge0d-btn-secondary:hover,
.ge0d-btn-secondary:focus {
  background: #8e1045;
  transform: translateY(-2px);
  box-shadow: var(--ge0d-shadow-hover);
}

.ge0d-btn-accent {
  background: var(--ge0d-accent);
  color: var(--ge0d-text-white);
}

.ge0d-btn-accent:hover,
.ge0d-btn-accent:focus {
  background: #e6127b;
  transform: translateY(-2px);
  box-shadow: var(--ge0d-shadow-hover);
}

.ge0d-btn-outline {
  background: transparent;
  color: var(--ge0d-text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ge0d-btn-outline:hover,
.ge0d-btn-outline:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu */
.ge0d-mobile-menu {
  position: fixed;
  top: var(--ge0d-header-height);
  left: 0;
  right: 0;
  background: var(--ge0d-gradient-alt);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: var(--ge0d-transition);
  z-index: 999;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--ge0d-shadow);
}

.ge0d-mobile-menu.ge0d-menu-open {
  transform: translateY(0);
}

.ge0d-mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
}

.ge0d-mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ge0d-mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--ge0d-text-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ge0d-transition);
}

.ge0d-mobile-menu a:hover,
.ge0d-mobile-menu a:focus {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

/* Carousel Styles */
.ge0d-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--ge0d-border-radius);
  box-shadow: var(--ge0d-shadow);
  margin-bottom: 2rem;
}

.ge0d-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--ge0d-transition);
  cursor: pointer;
}

.ge0d-carousel-slide.ge0d-slide-active {
  opacity: 1;
}

.ge0d-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ge0d-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--ge0d-text-white);
  padding: 2rem 1rem 1rem;
}

.ge0d-carousel-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ge0d-carousel-description {
  font-size: 1.2rem;
  opacity: 0.9;
}

.ge0d-carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.ge0d-carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--ge0d-transition);
}

.ge0d-carousel-indicator.ge0d-indicator-active {
  background: var(--ge0d-text-white);
  transform: scale(1.2);
}

/* Section Styles */
.ge0d-section {
  margin-bottom: 3rem;
}

.ge0d-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ge0d-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.ge0d-section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--ge0d-gradient);
  border-radius: 2px;
}

.ge0d-section-subtitle {
  font-size: 1.4rem;
  color: var(--ge0d-text-light);
  text-align: center;
  margin-bottom: 2rem;
}

/* Game Grid Styles */
.ge0d-game-category {
  margin-bottom: 3rem;
}

.ge0d-game-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ge0d-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ge0d-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.ge0d-game-item {
  background: var(--ge0d-light);
  border-radius: var(--ge0d-border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ge0d-transition);
  box-shadow: var(--ge0d-shadow);
  min-height: 120px;
}

.ge0d-game-item:hover,
.ge0d-game-item:focus {
  transform: translateY(-4px);
  box-shadow: var(--ge0d-shadow-hover);
}

.ge0d-game-item:active {
  transform: translateY(-2px);
}

.ge0d-game-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--ge0d-border-radius) var(--ge0d-border-radius) 0 0;
}

.ge0d-game-name {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ge0d-dark);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card Styles */
.ge0d-card {
  background: var(--ge0d-light);
  border-radius: var(--ge0d-border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--ge0d-shadow);
  border: 1px solid var(--ge0d-border);
}

.ge0d-card-header {
  margin-bottom: 1rem;
}

.ge0d-card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ge0d-dark);
  margin-bottom: 0.5rem;
}

.ge0d-card-content {
  color: var(--ge0d-text);
  line-height: 1.6;
}

.ge0d-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ge0d-border);
}

/* Promotional Links */
.ge0d-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--ge0d-gradient);
  color: var(--ge0d-text-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--ge0d-border-radius);
  transition: var(--ge0d-transition);
  min-height: 44px;
  cursor: pointer;
}

.ge0d-promo-btn:hover,
.ge0d-promo-btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--ge0d-shadow-hover);
}

.ge0d-promo-link {
  color: var(--ge0d-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--ge0d-transition);
  cursor: pointer;
}

.ge0d-promo-link:hover,
.ge0d-promo-link:focus {
  color: var(--ge0d-secondary);
  text-decoration: underline;
}

/* Footer Styles */
.ge0d-footer {
  background: var(--ge0d-gradient-alt);
  color: var(--ge0d-text-white);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.ge0d-footer-content {
  margin-bottom: 2rem;
}

.ge0d-footer-section {
  margin-bottom: 2rem;
}

.ge0d-footer-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ge0d-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ge0d-footer-link {
  color: var(--ge0d-text-white);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--ge0d-transition);
}

.ge0d-footer-link:hover,
.ge0d-footer-link:focus {
  color: var(--ge0d-accent);
}

.ge0d-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.ge0d-partner-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.7;
  transition: var(--ge0d-transition);
}

.ge0d-partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ge0d-copyright {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Bottom Navigation */
.ge0d-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--ge0d-bottom-nav-height);
  background: var(--ge0d-light);
  border-top: 1px solid var(--ge0d-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.ge0d-bottom-nav-container {
  display: flex;
  height: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.ge0d-bottom-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ge0d-transition);
}

.ge0d-bottom-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--ge0d-text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  transition: var(--ge0d-transition);
}

.ge0d-bottom-nav-item i {
  font-size: 2rem;
}

.ge0d-bottom-nav-item.ge0d-nav-active a,
.ge0d-bottom-nav-item a:hover,
.ge0d-bottom-nav-item a:focus {
  color: var(--ge0d-primary);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 375px) {
  .ge0d-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .ge0d-game-item {
    min-height: 100px;
  }
  
  .ge0d-game-image {
    height: 60px;
  }
}

@media (min-width: 768px) {
  .ge0d-container {
    max-width: 430px;
  }
  
  .ge0d-nav-toggle {
    display: none;
  }
  
  .ge0d-mobile-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .ge0d-mobile-menu ul {
    display: flex;
    gap: 1rem;
    padding: 0;
  }
  
  .ge0d-mobile-menu li {
    border: none;
  }
  
  .ge0d-mobile-menu a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ge0d-border-radius);
  }
  
  .ge0d-mobile-menu a:hover,
  .ge0d-mobile-menu a:focus {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
  }
  
  .ge0d-carousel {
    height: 250px;
  }
  
  .ge0d-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Utilities */
.ge0d-text-center {
  text-align: center;
}

.ge0d-text-left {
  text-align: left;
}

.ge0d-text-right {
  text-align: right;
}

.ge0d-mb-1 {
  margin-bottom: 1rem;
}

.ge0d-mb-2 {
  margin-bottom: 2rem;
}

.ge0d-mb-3 {
  margin-bottom: 3rem;
}

.ge0d-mt-1 {
  margin-top: 1rem;
}

.ge0d-mt-2 {
  margin-top: 2rem;
}

.ge0d-mt-3 {
  margin-top: 3rem;
}

.ge0d-hidden {
  display: none;
}

.ge0d-visible {
  display: block;
}

/* Animations */
@keyframes ge0d-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ge0d-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.ge0d-fade-in {
  animation: ge0d-fade-in 0.6s ease-out;
}

.ge0d-pulse {
  animation: ge0d-pulse 2s infinite;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--ge0d-primary);
  outline-offset: 2px;
}

/* Loading States */
.ge0d-lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.ge0d-lazy.loaded {
  opacity: 1;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --ge0d-light: #2d2d2d;
    --ge0d-light-alt: #1a1a1a;
    --ge0d-text: #e0e0e0;
    --ge0d-text-light: #b0b0b0;
    --ge0d-border: #404040;
  }
} 