/* Wjevo Gaming Platform Styles */
/* CSS Prefix: g0d2- */

:root {
  --primary-bg: #FAFAFA;
  --accent-pink: #FF1493;
  --dark-bg: #2C2C2C;
  --light-yellow: #FFEF94;
  --orange-accent: #FFB347;
  --gold-accent: #FFCC33;
  --text-primary: #2C2C2C;
  --text-secondary: #666666;
  --text-light: #FFFFFF;
  --border-color: #E0E0E0;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.g0d2-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.g0d2-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.g0d2-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.g0d2-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.g0d2-text-sm {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Layout */
.g0d2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.g0d2-flex {
  display: flex;
}

.g0d2-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g0d2-grid {
  display: grid;
}

.g0d2-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Header */
.g0d2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.g0d2-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.g0d2-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-decoration: none;
}

.g0d2-logo:hover {
  color: var(--light-yellow);
}

.g0d2-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.g0d2-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.g0d2-btn-primary {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #FF0066 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-light);
}

.g0d2-btn-primary:hover {
  background: linear-gradient(135deg, #FF0066 0%, #CC0052 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.g0d2-btn-secondary {
  background: transparent;
  color: var(--gold-accent);
  border: 2px solid var(--gold-accent);
}

.g0d2-btn-secondary:hover {
  background: var(--gold-accent);
  color: var(--dark-bg);
}

.g0d2-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* Mobile Menu */
.g0d2-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 9999;
  transition: var(--transition);
  overflow-y: auto;
}

.g0d2-menu-open {
  right: 0;
}

.g0d2-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.g0d2-overlay-active {
  opacity: 1;
  visibility: visible;
}

.g0d2-menu-header {
  padding: 1rem;
  border-bottom: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g0d2-menu-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.g0d2-menu-nav {
  padding: 1rem 0;
}

.g0d2-menu-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.g0d2-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent-pink);
  color: var(--gold-accent);
}

/* Main Content */
.g0d2-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .g0d2-main {
    padding-bottom: 80px;
  }
}

/* Hero Section */
.g0d2-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
}

.g0d2-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--light-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g0d2-hero-subtitle {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel */
.g0d2-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.g0d2-carousel-slide {
  display: none;
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.g0d2-slide-active {
  display: block;
}

.g0d2-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  padding: 2rem 1rem 1rem;
}

.g0d2-carousel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.g0d2-carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.g0d2-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.g0d2-indicator-active {
  background: var(--accent-pink);
  transform: scale(1.2);
}

/* Game Grid */
.g0d2-games-section {
  padding: 3rem 0;
}

.g0d2-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.g0d2-category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.g0d2-category-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-color);
  background: var(--primary-bg);
  color: var(--text-secondary);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.g0d2-category-btn:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.g0d2-category-active {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: var(--text-light);
}

.g0d2-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .g0d2-games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

.g0d2-game-card {
  background: var(--primary-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.g0d2-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.g0d2-game-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: var(--transition);
}

.g0d2-game-card:hover .g0d2-game-image {
  transform: scale(1.05);
}

.g0d2-game-info {
  padding: 0.75rem;
  text-align: center;
}

.g0d2-game-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.g0d2-game-type {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: capitalize;
}

.g0d2-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.g0d2-game-card:hover .g0d2-play-overlay {
  opacity: 1;
}

.g0d2-play-btn {
  background: var(--accent-pink);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.g0d2-play-btn:hover {
  background: #FF0066;
  transform: scale(1.05);
}

/* Content Sections */
.g0d2-content-section {
  padding: 3rem 0;
  background: var(--primary-bg);
  margin: 2rem 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.g0d2-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.g0d2-feature-card {
  background: var(--primary-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.g0d2-feature-card:hover {
  border-color: var(--accent-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.g0d2-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, #FF0066 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Bottom Navigation */
.g0d2-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  border-top: 1px solid #444;
  z-index: 1000;
  display: none;
}

@media (max-width: 768px) {
  .g0d2-bottom-nav {
    display: block;
  }
}

.g0d2-bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
}

.g0d2-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 0.25rem;
  text-decoration: none;
  color: #cccccc;
  transition: var(--transition);
  cursor: pointer;
}

.g0d2-bottom-nav-item:hover {
  color: var(--gold-accent);
  transform: translateY(-2px);
}

.g0d2-nav-active {
  color: var(--accent-pink) !important;
  position: relative;
}

.g0d2-nav-active::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-pink);
  border-radius: 50%;
}

.g0d2-nav-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.g0d2-nav-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* Footer */
.g0d2-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.g0d2-footer-section {
  margin-bottom: 2rem;
}

.g0d2-footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-accent);
}

.g0d2-footer-links {
  list-style: none;
}

.g0d2-footer-links li {
  margin-bottom: 0.5rem;
}

.g0d2-footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
}

.g0d2-footer-links a:hover {
  color: var(--gold-accent);
}

.g0d2-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.g0d2-partner-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.g0d2-partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.g0d2-footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #999999;
  font-size: 0.875rem;
}

/* Utility Classes */
.g0d2-text-center {
  text-align: center;
}

.g0d2-text-left {
  text-align: left;
}

.g0d2-text-right {
  text-align: right;
}

.g0d2-mb-1 {
  margin-bottom: 0.5rem;
}

.g0d2-mb-2 {
  margin-bottom: 1rem;
}

.g0d2-mb-3 {
  margin-bottom: 1.5rem;
}

.g0d2-mt-1 {
  margin-top: 0.5rem;
}

.g0d2-mt-2 {
  margin-top: 1rem;
}

.g0d2-mt-3 {
  margin-top: 1.5rem;
}

.g0d2-py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.g0d2-py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.g0d2-hidden {
  display: none;
}

.g0d2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .g0d2-menu-toggle {
    display: block;
  }

  .g0d2-header-actions .g0d2-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }

  .g0d2-hero-title {
    font-size: 2rem;
  }

  .g0d2-hero-subtitle {
    font-size: 1rem;
  }

  .g0d2-carousel-slide {
    height: 200px;
  }

  .g0d2-games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .g0d2-content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .g0d2-category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .g0d2-partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 430px) {
  .g0d2-container {
    padding: 0 0.75rem;
  }

  .g0d2-hero-title {
    font-size: 1.75rem;
  }

  .g0d2-games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
  }

  .g0d2-game-image {
    height: 80px;
  }

  .g0d2-game-title {
    font-size: 0.75rem;
  }

  .g0d2-game-type {
    font-size: 0.625rem;
  }

  .g0d2-bottom-nav-item {
    min-width: 50px;
    min-height: 50px;
  }

  .g0d2-nav-icon {
    font-size: 1.25rem;
  }

  .g0d2-nav-text {
    font-size: 0.6875rem;
  }

  .g0d2-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .g0d2-partner-logo {
    width: 60px;
    height: 30px;
  }
}

/* Animations */
@keyframes g0d2-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.g0d2-fade-in {
  animation: g0d2-fadeIn 0.6s ease-out;
}

@keyframes g0d2-slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.g0d2-menu-open {
  animation: g0d2-slideInRight 0.3s ease-out;
}

/* Print styles */
@media print {
  .g0d2-header,
  .g0d2-bottom-nav,
  .g0d2-carousel-indicators,
  .g0d2-play-overlay {
    display: none !important;
  }

  .g0d2-main {
    padding-top: 0;
    padding-bottom: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}