/**
 * PT Gaming - Main Stylesheet
 * Prefix: v15a-
 * Color Palette: #00695C | #00E5FF | #48D1CC | #A0522D | #2C3E50
 */

:root {
  --v15a-primary: #00695C;
  --v15a-accent: #00E5FF;
  --v15a-secondary: #48D1CC;
  --v15a-warm: #A0522D;
  --v15a-dark: #2C3E50;
  --v15a-bg: #0a1a1a;
  --v15a-card-bg: #112424;
  --v15a-text: #e0f2f1;
  --v15a-text-muted: #80cbc4;
  --v15a-border: #1a3a3a;
  --v15a-gradient: linear-gradient(135deg, #00695C 0%, #004D40 100%);
  --v15a-shadow: 0 2px 12px rgba(0, 229, 255, 0.1);
  --v15a-radius: 8px;
  font-size: 62.5%;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--v15a-bg);
  color: var(--v15a-text);
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}

a { color: var(--v15a-accent); text-decoration: none; }
a:hover { color: var(--v15a-secondary); }

img { max-width: 100%; height: auto; display: block; }

/* Header */
.v15a-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #004D40 0%, #00332e 100%);
  border-bottom: 1px solid var(--v15a-border);
  max-width: 430px;
  margin: 0 auto;
}

.v15a-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  height: 52px;
}

.v15a-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v15a-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v15a-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v15a-accent);
  letter-spacing: 0.5px;
}

.v15a-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v15a-btn-register {
  background: linear-gradient(135deg, #00E5FF, #48D1CC);
  color: #00332e;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 6px 14px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v15a-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.v15a-btn-login {
  background: transparent;
  color: var(--v15a-accent);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 6px 14px;
  border: 1px solid var(--v15a-accent);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v15a-btn-login:hover {
  background: rgba(0, 229, 255, 0.1);
}

.v15a-menu-toggle {
  background: none;
  border: none;
  color: var(--v15a-accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.v15a-mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 26, 26, 0.97);
  padding: 16px;
  max-width: 430px;
  margin: 0 auto;
}

.v15a-menu-active { display: block !important; }

.v15a-mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--v15a-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--v15a-border);
  transition: background 0.2s;
}

.v15a-mobile-menu a:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--v15a-accent);
}

/* Main Content */
.v15a-main {
  padding-top: 52px;
  padding-bottom: 16px;
}

/* Carousel */
.v15a-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.v15a-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.v15a-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.v15a-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.v15a-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.v15a-dot-active {
  background: var(--v15a-accent);
  width: 20px;
  border-radius: 4px;
}

/* Sections */
.v15a-section {
  padding: 16px 12px;
}

.v15a-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v15a-accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--v15a-primary);
}

/* Game Grid */
.v15a-game-category {
  margin-bottom: 20px;
}

.v15a-category-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--v15a-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v15a-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.v15a-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.v15a-game-item:hover {
  transform: translateY(-2px);
}

.v15a-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--v15a-radius);
  border: 1px solid var(--v15a-border);
}

.v15a-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--v15a-text-muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cards */
.v15a-card {
  background: var(--v15a-card-bg);
  border: 1px solid var(--v15a-border);
  border-radius: var(--v15a-radius);
  padding: 16px;
  margin-bottom: 12px;
}

.v15a-card h3 {
  color: var(--v15a-accent);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.v15a-card p {
  color: var(--v15a-text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Promo Button */
.v15a-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00E5FF, #48D1CC);
  color: #00332e;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.v15a-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.v15a-promo-link {
  color: var(--v15a-accent);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* RTP Table */
.v15a-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.v15a-rtp-table th {
  background: var(--v15a-primary);
  color: var(--v15a-accent);
  padding: 8px 6px;
  text-align: left;
  font-weight: 600;
}

.v15a-rtp-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--v15a-border);
  color: var(--v15a-text-muted);
}

.v15a-rtp-high { color: #4CAF50; font-weight: 600; }
.v15a-rtp-mid { color: #FFC107; font-weight: 600; }

/* Footer */
.v15a-footer {
  background: #041515;
  border-top: 1px solid var(--v15a-border);
  padding: 20px 12px;
  text-align: center;
}

.v15a-footer-desc {
  color: var(--v15a-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.v15a-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.v15a-footer-links a {
  background: var(--v15a-card-bg);
  color: var(--v15a-text-muted);
  font-size: 1.1rem;
  padding: 6px 12px;
  border: 1px solid var(--v15a-border);
  border-radius: 16px;
  transition: all 0.2s;
}

.v15a-footer-links a:hover {
  color: var(--v15a-accent);
  border-color: var(--v15a-accent);
}

.v15a-copyright {
  color: #546e6e;
  font-size: 1.1rem;
  margin-top: 12px;
}

/* Bottom Navigation */
.v15a-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #004D40, #00251a);
  border-top: 1px solid var(--v15a-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
}

.v15a-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(--v15a-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.v15a-bottom-nav-btn:hover,
.v15a-bottom-active {
  color: var(--v15a-accent);
  transform: scale(1.08);
}

.v15a-bottom-nav-btn .v15a-bnav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.v15a-bottom-nav-btn .v15a-bnav-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Testimonials */
.v15a-testimonial {
  background: var(--v15a-card-bg);
  border-left: 3px solid var(--v15a-accent);
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 0 var(--v15a-radius) var(--v15a-radius) 0;
}

.v15a-testimonial-text {
  font-size: 1.3rem;
  color: var(--v15a-text);
  font-style: italic;
  margin-bottom: 6px;
}

.v15a-testimonial-author {
  font-size: 1.1rem;
  color: var(--v15a-accent);
  font-weight: 600;
}

/* Winner ticker */
.v15a-winner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--v15a-border);
}

.v15a-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v15a-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v15a-accent);
  font-size: 1.4rem;
  font-weight: 700;
}

.v15a-winner-info {
  flex: 1;
}

.v15a-winner-name {
  font-size: 1.2rem;
  color: var(--v15a-text);
  font-weight: 600;
}

.v15a-winner-game {
  font-size: 1.1rem;
  color: var(--v15a-text-muted);
}

.v15a-winner-amount {
  font-size: 1.4rem;
  color: #4CAF50;
  font-weight: 700;
}

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

@media (min-width: 769px) {
  .v15a-bottom-nav {
    display: none;
  }
  body {
    max-width: 430px;
  }
}

/* Utility classes */
.v15a-text-center { text-align: center; }
.v15a-mt-8 { margin-top: 8px; }
.v15a-mt-16 { margin-top: 16px; }
.v15a-mb-8 { margin-bottom: 8px; }
.v15a-mb-16 { margin-bottom: 16px; }
.v15a-hidden { display: none; }
