/* Nino Gaming - Luxury Gold & Orange Theme */
/* All classes use prefix: vfc1- */

:root {
  --vfc1-silver: #CCCCCC;
  --vfc1-gold: #FFD700;
  --vfc1-dark: #1E1E1E;
  --vfc1-orange: #FFB347;
  --vfc1-black: #000000;
  --vfc1-white: #FFFFFF;
  --vfc1-gradient: linear-gradient(135deg, #FFD700 0%, #FFB347 100%);
  --vfc1-gradient-reverse: linear-gradient(135deg, #FFB347 0%, #FFD700 100%);
  --vfc1-shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.3);
  --vfc1-shadow-orange: 0 4px 15px rgba(255, 179, 71, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--vfc1-silver);
  background-color: var(--vfc1-dark);
  overflow-x: hidden;
}

/* Header Styles */
.vfc1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(30, 30, 30, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--vfc1-gold);
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.2);
}

.vfc1-header-scrolled {
  box-shadow: 0 4px 30px rgba(255, 215, 0, 0.4);
}

.vfc1-header-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vfc1-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vfc1-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vfc1-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--vfc1-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vfc1-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vfc1-btn-register,
.vfc1-btn-login {
  padding: 0.6rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vfc1-btn-register {
  background: var(--vfc1-gradient);
  color: var(--vfc1-black);
  box-shadow: var(--vfc1-shadow-gold);
}

.vfc1-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.vfc1-btn-login {
  background: transparent;
  color: var(--vfc1-gold);
  border: 2px solid var(--vfc1-gold);
}

.vfc1-btn-login:hover {
  background: var(--vfc1-gold);
  color: var(--vfc1-black);
}

.vfc1-menu-toggle {
  background: transparent;
  border: none;
  color: var(--vfc1-gold);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.vfc1-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vfc1-overlay-active {
  opacity: 1;
  visibility: visible;
}

.vfc1-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1E1E1E 0%, #2A2A2A 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 3px solid var(--vfc1-gold);
  box-shadow: -5px 0 30px rgba(255, 215, 0, 0.3);
}

.vfc1-menu-open {
  right: 0;
}

.vfc1-menu-header {
  padding: 2rem;
  background: var(--vfc1-gradient);
  color: var(--vfc1-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vfc1-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vfc1-menu-close {
  background: transparent;
  border: none;
  color: var(--vfc1-black);
  font-size: 2.4rem;
  cursor: pointer;
}

.vfc1-menu-list {
  list-style: none;
  padding: 1rem 0;
}

.vfc1-menu-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.vfc1-menu-link {
  display: block;
  padding: 1.4rem 2rem;
  color: var(--vfc1-silver);
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vfc1-menu-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--vfc1-gold);
  padding-left: 2.5rem;
}

/* Main Content */
.vfc1-main {
  margin-top: 60px;
  padding-bottom: 80px;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel */
.vfc1-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.vfc1-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.vfc1-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}

.vfc1-carousel-img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
}

/* Section Styles */
.vfc1-section {
  padding: 2.5rem 1.5rem;
}

.vfc1-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--vfc1-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 1.5rem;
}

.vfc1-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: var(--vfc1-gradient);
  border-radius: 3px;
}

/* Game Grid */
.vfc1-game-category {
  margin-bottom: 3rem;
}

.vfc1-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--vfc1-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vfc1-category-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--vfc1-orange) 0%, transparent 100%);
}

.vfc1-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.vfc1-game-item {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.vfc1-game-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--vfc1-shadow-gold);
  border-color: var(--vfc1-gold);
}

.vfc1-game-img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

.vfc1-game-name {
  padding: 0.6rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--vfc1-silver);
  line-height: 1.3;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Modules */
.vfc1-content-module {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 179, 71, 0.08) 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: var(--vfc1-shadow-gold);
}

.vfc1-module-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--vfc1-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vfc1-module-content p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: var(--vfc1-silver);
}

.vfc1-module-content ul,
.vfc1-module-content ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

.vfc1-module-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.vfc1-promo-link {
  display: inline-block;
  color: var(--vfc1-orange);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--vfc1-orange);
  padding-bottom: 2px;
}

.vfc1-promo-link:hover {
  color: var(--vfc1-gold);
  border-bottom-color: var(--vfc1-gold);
  transform: translateX(3px);
}

.vfc1-internal-link {
  color: var(--vfc1-gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--vfc1-gold);
  transition: all 0.3s ease;
}

.vfc1-internal-link:hover {
  color: var(--vfc1-orange);
  border-bottom-color: var(--vfc1-orange);
}

/* Bottom Navigation */
.vfc1-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-top: 2px solid var(--vfc1-gold);
  box-shadow: 0 -2px 20px rgba(255, 215, 0, 0.2);
}

.vfc1-bottom-nav-container {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
}

.vfc1-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--vfc1-silver);
  transition: all 0.3s ease;
  padding: 0.5rem;
  cursor: pointer;
  min-width: 60px;
}

.vfc1-bottom-nav-item:hover,
.vfc1-nav-active {
  color: var(--vfc1-gold);
  transform: translateY(-2px);
}

.vfc1-nav-icon {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.vfc1-nav-active .vfc1-nav-icon {
  color: var(--vfc1-gold);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.vfc1-nav-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Footer */
.vfc1-footer {
  background: linear-gradient(180deg, #1E1E1E 0%, #0A0A0A 100%);
  padding: 3rem 1.5rem 2rem;
  border-top: 3px solid var(--vfc1-gold);
  margin-bottom: 60px;
}

.vfc1-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.vfc1-footer-description {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--vfc1-silver);
  line-height: 1.6;
}

.vfc1-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vfc1-footer-link {
  color: var(--vfc1-orange);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.vfc1-footer-link:hover {
  color: var(--vfc1-gold);
}

.vfc1-partners-section {
  margin: 2rem 0;
}

.vfc1-partners-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--vfc1-gold);
  text-transform: uppercase;
}

.vfc1-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.vfc1-partner-logo {
  width: 100%;
  height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.vfc1-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.vfc1-copyright {
  text-align: center;
  color: var(--vfc1-silver);
  font-size: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Desktop Styles */
@media (min-width: 769px) {
  .vfc1-bottom-nav {
    display: none;
  }

  .vfc1-main {
    padding-bottom: 0;
  }

  .vfc1-footer {
    margin-bottom: 0;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .vfc1-main {
    padding-bottom: 80px;
  }
}
