/**
 * superpharma ph - Core Stylesheet
 * All classes use prefix: seeb-
 * Color palette: #00B8D4 | #2C2C2C | #F5DEB3 | #B2DFDB | #FAF0E6 | #BBBBBB
 * Mobile-first design, max-width: 430px
 */

:root {
  --seeb-primary: #00B8D4;
  --seeb-bg: #2C2C2C;
  --seeb-accent: #F5DEB3;
  --seeb-light: #B2DFDB;
  --seeb-cream: #FAF0E6;
  --seeb-muted: #BBBBBB;
  --seeb-dark: #1a1a1a;
  --seeb-card: #333333;
  --seeb-success: #4CAF50;
  --seeb-danger: #e74c3c;
  --seeb-gold: #FFD700;
}

/* Reset and Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--seeb-bg);
  color: var(--seeb-cream);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.seeb-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}
.seeb-wrapper {
  padding: 0 1.2rem;
}

/* Header */
.seeb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--seeb-dark);
  border-bottom: 2px solid var(--seeb-primary);
  max-width: 430px;
  margin: 0 auto;
}
.seeb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  height: 50px;
}
.seeb-logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.seeb-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.seeb-logo-text {
  color: var(--seeb-primary);
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.seeb-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.seeb-btn-register {
  background: var(--seeb-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.seeb-btn-register:hover { background: #009ab3; transform: scale(1.05); }
.seeb-btn-login {
  background: transparent;
  color: var(--seeb-primary);
  border: 1px solid var(--seeb-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.seeb-btn-login:hover { background: var(--seeb-primary); color: #fff; }
.seeb-menu-toggle {
  background: none;
  border: none;
  color: var(--seeb-cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.seeb-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.seeb-overlay-active { display: block; }
.seeb-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 260px;
  height: 100vh;
  background: var(--seeb-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}
.seeb-menu-active { right: 0; }
.seeb-mobile-menu a {
  display: block;
  color: var(--seeb-cream);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #444;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.seeb-mobile-menu a:hover { color: var(--seeb-primary); }
.seeb-menu-close {
  background: none;
  border: none;
  color: var(--seeb-cream);
  font-size: 2.2rem;
  cursor: pointer;
  text-align: right;
  width: 100%;
  margin-bottom: 1rem;
}

/* Carousel */
.seeb-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.seeb-slides-wrapper {
  display: flex;
  position: relative;
}
.seeb-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.seeb-slide-active { display: block; }
.seeb-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.seeb-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.seeb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.seeb-dot-active { background: var(--seeb-primary); }

/* Main content padding for header */
.seeb-main {
  padding-top: 52px;
  padding-bottom: 2rem;
}

/* Section titles */
.seeb-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--seeb-primary);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--seeb-primary);
}

/* Game Grid */
.seeb-game-section {
  margin: 1rem 0;
}
.seeb-game-section h2 {
  font-size: 1.6rem;
  color: var(--seeb-accent);
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--seeb-primary);
}
.seeb-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0.5rem 0;
}
.seeb-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--seeb-card);
  border-radius: 8px;
  padding: 0.5rem 0.3rem;
}
.seeb-game-item:hover { transform: scale(1.05); }
.seeb-game-item img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  margin-bottom: 0.3rem;
}
.seeb-game-item span {
  font-size: 1rem;
  color: var(--seeb-cream);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Content Cards */
.seeb-card {
  background: var(--seeb-card);
  border-radius: 10px;
  padding: 1.2rem;
  margin: 1rem 0;
  border: 1px solid #444;
}
.seeb-card h3 {
  font-size: 1.5rem;
  color: var(--seeb-primary);
  margin-bottom: 0.8rem;
}
.seeb-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--seeb-cream);
  margin-bottom: 0.6rem;
}

/* Promo Buttons */
.seeb-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--seeb-primary), #009ab3);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}
.seeb-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,184,212,0.4); }
.seeb-promo-link {
  color: var(--seeb-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.seeb-promo-link:hover { color: var(--seeb-accent); }

/* Footer */
.seeb-footer {
  background: var(--seeb-dark);
  border-top: 2px solid var(--seeb-primary);
  padding: 1.5rem 1rem 2rem;
  margin-top: 2rem;
}
.seeb-footer-brand {
  font-size: 1.2rem;
  color: var(--seeb-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.seeb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.seeb-footer-links a {
  display: inline-block;
  background: var(--seeb-card);
  color: var(--seeb-cream);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.seeb-footer-links a:hover { background: var(--seeb-primary); color: #fff; }
.seeb-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}
.seeb-footer-partners img {
  height: 24px;
  border-radius: 3px;
  opacity: 0.8;
}
.seeb-footer-copy {
  font-size: 1.1rem;
  color: var(--seeb-muted);
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

/* Bottom Navigation */
.seeb-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--seeb-dark);
  border-top: 2px solid var(--seeb-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
}
.seeb-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--seeb-muted);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
  border-radius: 8px;
}
.seeb-bottom-nav-btn:hover { color: var(--seeb-primary); transform: scale(1.08); }
.seeb-bottom-nav-btn .seeb-nav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.seeb-bottom-nav-btn .seeb-nav-label {
  font-size: 1rem;
  line-height: 1.2;
}
.seeb-bottom-nav-active {
  color: var(--seeb-primary) !important;
  background: rgba(0,184,212,0.1);
}
.seeb-bottom-nav-active .seeb-nav-icon {
  color: var(--seeb-primary);
}

/* Utilities */
.seeb-text-center { text-align: center; }
.seeb-text-primary { color: var(--seeb-primary); }
.seeb-text-accent { color: var(--seeb-accent); }
.seeb-mt-1 { margin-top: 1rem; }
.seeb-mb-1 { margin-bottom: 1rem; }
.seeb-py-1 { padding: 1rem 0; }
.seeb-hidden { display: none; }

/* FAQ/Accordion */
.seeb-faq-item {
  background: var(--seeb-card);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  padding: 1rem;
  border: 1px solid #444;
}
.seeb-faq-item h3 {
  font-size: 1.3rem;
  color: var(--seeb-primary);
  margin-bottom: 0.4rem;
}
.seeb-faq-item p {
  font-size: 1.2rem;
  color: var(--seeb-cream);
  line-height: 1.5;
}

/* Testimonials */
.seeb-testimonial {
  background: var(--seeb-card);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--seeb-primary);
}
.seeb-testimonial-name {
  font-size: 1.2rem;
  color: var(--seeb-primary);
  font-weight: 600;
}
.seeb-testimonial-text {
  font-size: 1.2rem;
  color: var(--seeb-cream);
  line-height: 1.5;
  margin-top: 0.3rem;
}

/* Winners showcase */
.seeb-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #444;
}
.seeb-winner-name { font-size: 1.2rem; color: var(--seeb-accent); }
.seeb-winner-game { font-size: 1.1rem; color: var(--seeb-muted); }
.seeb-winner-amount { font-size: 1.3rem; color: var(--seeb-success); font-weight: 700; }

/* Steps list */
.seeb-steps { list-style: none; padding: 0; }
.seeb-steps li {
  padding: 0.8rem 0 0.8rem 2.5rem;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--seeb-cream);
}
.seeb-steps li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0.8rem;
  background: var(--seeb-primary);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Internal link style */
.seeb-internal-link {
  color: var(--seeb-light);
  text-decoration: underline;
  transition: color 0.2s;
}
.seeb-internal-link:hover { color: var(--seeb-primary); }

/* Desktop: hide bottom nav, show wider layout */
@media (min-width: 769px) {
  .seeb-bottom-nav { display: none; }
  body { max-width: 430px; }
}

/* Mobile bottom padding */
@media (max-width: 768px) {
  .seeb-main { padding-bottom: 80px; }
}
