/**
 * Deposit PH - Main Stylesheet
 * All classes use v2f3- prefix for namespace isolation
 */

:root {
  --v2f3-primary: #00BFFF;
  --v2f3-secondary: #A9A9A9;
  --v2f3-accent: #00D4FF;
  --v2f3-dark: #0D1117;
  --v2f3-darker: #010409;
  --v2f3-light: #E8E8E8;
  --v2f3-white: #FFFFFF;
  --v2f3-gray: #6B7280;
  --v2f3-border: #21262D;
  --v2f3-shadow: rgba(0, 191, 255, 0.15);
}

* {
  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, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--v2f3-light);
  background-color: var(--v2f3-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.v2f3-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

.v2f3-wrapper {
  padding-bottom: 8rem;
}

.v2f3-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2f3-border);
  z-index: 1000;
  box-shadow: 0 2px 12px var(--v2f3-shadow);
}

.v2f3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  max-width: 430px;
  margin: 0 auto;
}

.v2f3-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v2f3-primary);
}

.v2f3-logo img {
  width: 28px;
  height: 28px;
}

.v2f3-header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.v2f3-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.v2f3-btn-primary {
  background: linear-gradient(135deg, var(--v2f3-primary) 0%, var(--v2f3-accent) 100%);
  color: var(--v2f3-dark);
  box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}

.v2f3-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
}

.v2f3-btn-secondary {
  background-color: transparent;
  color: var(--v2f3-primary);
  border: 1px solid var(--v2f3-primary);
}

.v2f3-btn-secondary:hover {
  background-color: var(--v2f3-primary);
  color: var(--v2f3-dark);
}

.v2f3-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.5rem;
  cursor: pointer;
}

.v2f3-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--v2f3-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.v2f3-mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--v2f3-darker);
  border-bottom: 1px solid var(--v2f3-border);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v2f3-mobile-menu.v2f3-menu-open {
  max-height: 500px;
}

.v2f3-menu-nav {
  padding: 1rem 0;
}

.v2f3-menu-link {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--v2f3-light);
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  font-size: 1.4rem;
}

.v2f3-menu-link:hover {
  background-color: rgba(0, 191, 255, 0.1);
  color: var(--v2f3-primary);
}

.v2f3-hero {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
}

.v2f3-carousel {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.v2f3-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.v2f3-slide.v2f3-active {
  opacity: 1;
}

.v2f3-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2f3-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.v2f3-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v2f3-indicator.v2f3-active {
  background-color: var(--v2f3-primary);
  width: 24px;
  border-radius: 4px;
}

.v2f3-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.v2f3-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v2f3-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.v2f3-text {
  color: var(--v2f3-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.v2f3-card {
  background-color: rgba(0, 191, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.v2f3-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v2f3-primary);
  margin-bottom: 1rem;
}

.v2f3-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.v2f3-game-item {
  background-color: rgba(0, 191, 255, 0.03);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.v2f3-game-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--v2f3-shadow);
}

.v2f3-game-icon {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--v2f3-darker);
}

.v2f3-game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2f3-game-name {
  padding: 0.5rem;
  font-size: 1.1rem;
  color: var(--v2f3-light);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2f3-link {
  color: var(--v2f3-primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.v2f3-link:hover {
  color: var(--v2f3-accent);
}

.v2f3-footer {
  background-color: rgba(1, 4, 9, 0.8);
  padding: 2rem 0 1rem;
  margin-top: 2rem;
}

.v2f3-footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v2f3-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.v2f3-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.v2f3-footer-link {
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 191, 255, 0.1);
  color: var(--v2f3-light);
  border-radius: 0.5rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.v2f3-footer-link:hover {
  background-color: var(--v2f3-primary);
  color: var(--v2f3-dark);
}

.v2f3-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.v2f3-partner-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.v2f3-partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.v2f3-copyright {
  text-align: center;
  color: var(--v2f3-gray);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 191, 255, 0.1);
}

.v2f3-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--v2f3-darker) 0%, rgba(13, 17, 23, 0.98) 100%);
  border-top: 2px solid var(--v2f3-primary);
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 -2px 12px rgba(0, 191, 255, 0.2);
}

.v2f3-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}

.v2f3-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 60px;
  min-height: 60px;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.v2f3-nav-item:hover {
  background-color: rgba(0, 191, 255, 0.1);
  transform: scale(1.05);
}

.v2f3-nav-item.v2f3-active {
  background-color: rgba(0, 191, 255, 0.15);
}

.v2f3-nav-icon {
  font-size: 24px;
  color: var(--v2f3-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2f3-nav-item.v2f3-active .v2f3-nav-icon {
  color: var(--v2f3-accent);
}

.v2f3-nav-label {
  font-size: 10px;
  color: var(--v2f3-light);
  font-weight: 500;
}

.v2f3-nav-item.v2f3-active .v2f3-nav-label {
  color: var(--v2f3-accent);
  font-weight: 600;
}

@media (min-width: 769px) {
  .v2f3-bottom-nav {
    display: none;
  }

  .v2f3-wrapper {
    padding-bottom: 2rem;
  }
}

.v2f3-mt-1 { margin-top: 1rem; }
.v2f3-mt-2 { margin-top: 2rem; }
.v2f3-mb-1 { margin-bottom: 1rem; }
.v2f3-mb-2 { margin-bottom: 2rem; }
.v2f3-text-center { text-align: center; }
.v2f3-text-bold { font-weight: 700; }
.v2f3-text-accent { color: var(--v2f3-accent); }
.v2f3-text-primary { color: var(--v2f3-primary); }

.v2f3-promo-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--v2f3-primary) 0%, var(--v2f3-accent) 100%);
  color: var(--v2f3-dark);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.v2f3-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}

.v2f3-promo-text {
  color: var(--v2f3-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.v2f3-promo-text:hover {
  color: var(--v2f3-accent);
}

.v2f3-accordion-item {
  background-color: rgba(0, 191, 255, 0.05);
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.v2f3-accordion-header {
  padding: 1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.v2f3-accordion-header:hover {
  background-color: rgba(0, 191, 255, 0.1);
}

.v2f3-accordion-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--v2f3-light);
}

.v2f3-accordion-icon {
  transition: transform 0.3s ease;
  color: var(--v2f3-primary);
}

.v2f3-accordion-item.v2f3-active .v2f3-accordion-icon {
  transform: rotate(180deg);
}

.v2f3-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v2f3-accordion-body {
  padding: 0 1.2rem 1rem;
  color: var(--v2f3-secondary);
  font-size: 1.3rem;
  line-height: 1.6;
}
