/* Piok Website Stylesheet - style-7035.css */
/* All classes use v528- prefix for namespace isolation */
/* Color palette: #FFB3BA | #FF9500 | #1B263B | #FFDFBA | #004D40 */

:root {
  --v528-primary: #FF9500;
  --v528-secondary: #004D40;
  --v528-bg: #1B263B;
  --v528-bg-dark: #0f1724;
  --v528-text: #FFDFBA;
  --v528-accent: #FFB3BA;
  --v528-white: #ffffff;
  --v528-gray: #a0aec0;
  --v528-radius: 8px;
  --v528-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

* { 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-color: var(--v528-bg);
  color: var(--v528-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--v528-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--v528-accent); }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
.v528-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v528-bg-dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,149,0,0.2);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v528-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

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

.v528-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v528-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border-radius: var(--v528-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 32px;
}

.v528-btn-register {
  background: linear-gradient(135deg, var(--v528-primary), #e68600);
  color: var(--v528-bg-dark);
}

.v528-btn-login {
  background: transparent;
  color: var(--v528-primary);
  border: 1.5px solid var(--v528-primary);
}

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

.v528-menu-toggle {
  background: none;
  border: none;
  color: var(--v528-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* === MOBILE MENU === */
.v528-mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background: rgba(15,23,36,0.97);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
}

.v528-menu-active { display: flex; }

.v528-mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: var(--v528-text);
  border-bottom: 1px solid rgba(255,223,186,0.1);
  transition: color 0.2s;
}

.v528-mobile-menu a:hover { color: var(--v528-primary); }

.v528-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--v528-primary);
  font-size: 2.4rem;
  cursor: pointer;
}

/* === MAIN CONTENT === */
.v528-main {
  padding-top: 5.2rem;
  min-height: 100vh;
}

.v528-container {
  width: 100%;
  padding: 0 1rem;
}

/* === CAROUSEL === */
.v528-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--v528-radius);
  margin-bottom: 1.5rem;
}

.v528-slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.v528-slide {
  min-width: 100%;
  display: none;
  cursor: pointer;
}

.v528-slide-active { display: block; }

.v528-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--v528-radius);
}

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

.v528-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}

/* === SECTIONS === */
.v528-section {
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
}

.v528-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v528-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--v528-secondary);
}

.v528-section-title i {
  margin-right: 0.5rem;
}

.v528-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v528-accent);
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--v528-primary);
}

/* === GAME GRID === */
.v528-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.v528-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

.v528-game-item:hover { transform: scale(1.05); }

.v528-game-item img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid rgba(255,149,0,0.2);
  margin-bottom: 0.3rem;
}

.v528-game-item span {
  font-size: 1.1rem;
  color: var(--v528-text);
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === CARDS === */
.v528-card {
  background: var(--v528-bg-dark);
  border-radius: var(--v528-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,149,0,0.1);
}

.v528-card h3 {
  font-size: 1.5rem;
  color: var(--v528-primary);
  margin-bottom: 0.6rem;
}

.v528-card p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: var(--v528-gray);
}

/* === PROMO BUTTON === */
.v528-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v528-primary), #e68600);
  color: var(--v528-bg-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255,149,0,0.3);
}

.v528-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,149,0,0.5);
}

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

/* === FOOTER === */
.v528-footer {
  background: var(--v528-bg-dark);
  padding: 2rem 1rem 1rem;
  border-top: 2px solid var(--v528-secondary);
  margin-top: 2rem;
}

.v528-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.v528-footer-brand p {
  font-size: 1.2rem;
  color: var(--v528-gray);
  line-height: 1.6rem;
  margin-bottom: 0.5rem;
}

.v528-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.v528-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255,149,0,0.1);
  border-radius: 20px;
  font-size: 1.1rem;
  color: var(--v528-text);
  transition: all 0.2s;
}

.v528-footer-links a:hover {
  background: var(--v528-primary);
  color: var(--v528-bg-dark);
}

.v528-footer-partners {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.v528-footer-partners img {
  height: 24px;
  opacity: 0.6;
  filter: grayscale(1);
}

.v528-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--v528-gray);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,223,186,0.1);
}

/* === BOTTOM NAV === */
.v528-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 58px;
  background: linear-gradient(180deg, #1a2d47, var(--v528-bg-dark));
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1.5px solid rgba(255,149,0,0.3);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
}

.v528-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 50px;
  cursor: pointer;
  color: var(--v528-gray);
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  background: none;
  gap: 2px;
}

.v528-bottom-nav-item:hover,
.v528-bottom-nav-active {
  color: var(--v528-primary);
  transform: scale(1.08);
}

.v528-bottom-nav-item i,
.v528-bottom-nav-item .material-icons {
  font-size: 22px;
}

.v528-bottom-nav-item span {
  font-size: 1rem;
  line-height: 1.2rem;
}

.v528-bottom-nav-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--v528-primary);
  border-radius: 2px;
  margin-top: 1px;
}

/* === RESPONSIVE === */
@media (min-width: 769px) {
  .v528-bottom-nav { display: none; }
  .v528-header { max-width: 430px; }
}

@media (max-width: 768px) {
  .v528-main { padding-bottom: 70px; }
}

/* === UTILITY === */
.v528-text-center { text-align: center; }
.v528-mt-1 { margin-top: 0.5rem; }
.v528-mt-2 { margin-top: 1rem; }
.v528-mb-1 { margin-bottom: 0.5rem; }
.v528-mb-2 { margin-bottom: 1rem; }
.v528-hidden { display: none !important; }

/* === TESTIMONIAL === */
.v528-testimonial {
  background: var(--v528-bg-dark);
  border-radius: var(--v528-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v528-primary);
}

.v528-testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--v528-gray);
  margin-bottom: 0.4rem;
}

.v528-testimonial cite {
  font-size: 1.1rem;
  color: var(--v528-accent);
}

/* === WINNER LIST === */
.v528-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,223,186,0.05);
}

.v528-winner-item span:first-child {
  color: var(--v528-text);
  font-size: 1.2rem;
}

.v528-winner-item span:last-child {
  color: var(--v528-primary);
  font-weight: 700;
  font-size: 1.3rem;
}

/* === FAQ === */
.v528-faq-item {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(0,77,64,0.15);
  border-radius: var(--v528-radius);
}

.v528-faq-item h3 {
  font-size: 1.3rem;
  color: var(--v528-primary);
  margin-bottom: 0.4rem;
}

.v528-faq-item p {
  font-size: 1.2rem;
  color: var(--v528-gray);
  line-height: 1.5rem;
}

/* === PAYMENT === */
.v528-payment-grid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.v528-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem;
  background: var(--v528-bg-dark);
  border-radius: var(--v528-radius);
  min-width: 70px;
}

.v528-payment-item i { font-size: 2rem; color: var(--v528-primary); margin-bottom: 0.3rem; }
.v528-payment-item span { font-size: 1rem; color: var(--v528-gray); }
