

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&display=swap');
/* Orc Nation Portal - Professional Design */
/* Based on Official Style Guide */
:root {
  /* Official Style Guide Colors */
  --dragon-red: #970c00;
  --dragon-red-rgb: 151, 12, 0;
  --golden: #C5AC71;
  --golden-rgb: 197, 172, 113;
  --dark-grey: #1B1B1B;
  --dark-grey-rgb: 27, 27, 27;
  --light-grey: #a1a1a1;
  --light-grey-rgb: 161, 161, 161;
  
  /* Derived Colors */
  --card-bg: rgba(27, 27, 27, 0.92);
  --card-border: rgba(197, 172, 113, 0.3);
  --overlay-dark: rgba(0, 0, 0, 0.7);
}
/* Mint Component Integration - Updated */
.mint-component-container {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--card-bg);
  border: 2px solid var(--golden);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(197, 172, 113, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
}
.mint-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.mint-intro h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--golden);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.mint-intro p {
  color: var(--light-grey);
  font-size: 1rem;
  margin: 0;
}
/* Override Mint component styles to match portal theme */
.mint-component-container .bg-gray-800 {
  background: rgba(27, 27, 27, 0.9) !important;
  border: 1px solid var(--golden);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}
.mint-component-container .bg-gray-700 {
  background: rgba(27, 27, 27, 0.8) !important;
  border: 1px solid rgba(197, 172, 113, 0.3);
}
.mint-component-container .text-white {
  color: #ffffff !important;
  font-weight: 500;
}
.mint-component-container .text-green-400 {
  color: var(--golden) !important;
  text-shadow: 0 0 8px rgba(197, 172, 113, 0.5);
}
.mint-component-container .border-customGold {
  border-color: var(--golden) !important;
  border-width: 2px !important;
}
.mint-component-container .bg-customBlack {
  background: var(--card-bg) !important;
}
/* Mint button styling - more specific selectors */
.mint-component-container button[style*="backgroundColor: \"#18c619\""],
.mint-component-container button[style*="background-color: \"#18c619\""],
.mint-component-container button[style*="#18c619"],
.mint-component-container .bg-green-600 {
  background: linear-gradient(135deg, var(--dragon-red) 0%, #B71C1C 100%) !important;
  color: #ffffff !important;
  border: 2px solid var(--dragon-red) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(151, 12, 0, 0.4);
  transition: all 0.3s ease;
}
.mint-component-container button[style*="backgroundColor: \"#18c619\""]:hover,
.mint-component-container button[style*="background-color: \"#18c619\""]:hover,
.mint-component-container button[style*="#18c619"]:hover,
.mint-component-container .bg-green-600:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(151, 12, 0, 0.6) !important;
}
/* Select dropdown styling */
.mint-component-container select {
  background: rgba(27, 27, 27, 0.8) !important;
  border: 2px solid var(--golden) !important;
  color: #ffffff !important;
}
.mint-component-container select:focus {
  border-color: var(--golden) !important;
  box-shadow: 0 0 0 3px rgba(197, 172, 113, 0.3) !important;
}
/* Labels styling */
.mint-component-container label {
  color: var(--golden) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Ensure mint component doesn't break layout */
.mint-component-container > div {
  max-width: 100%;
  box-sizing: border-box;
}
.mint-component-container .w-full {
  max-width: 100%;
  box-sizing: border-box;
}
.portal-main-v2 {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--dark-grey);
  font-family: 'Cinzel', serif;
  color: var(--light-grey);
}
/* Fix zoom issues - prevent gaps and breaking at all zoom levels */
.portal-main-v2 {
  max-width: 100vw;
  overflow-x: hidden;
}
.portal-main-v2 section {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  min-height: 50vh; /* Changed from 100vh to proportional height */
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
/* Remove section borders and gaps completely - MAXIMUM SPECIFICITY */
.portal-main-v2 > section {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Individual section overrides with maximum specificity */
.portal-main-v2 section.hero-section,
.portal-main-v2 section.minting-section-v2,
.portal-main-v2 section.features-section,
.portal-main-v2 section.how-to-section,
.portal-main-v2 section.footer-cta,
.portal-main-v2 section.extended-game-gallery {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
/* Remove the ::after pseudo-elements that create gaps */
.portal-main-v2 section::after {
  display: none !important;
}
/* FORCE NO GAPS - Ultra specific rules */
section[class*="section"] {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.hero-section,
.minting-section-v2,
.features-section,
.how-to-section,
.footer-cta,
.extended-game-gallery {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.portal-main-v2 * {
  box-sizing: border-box;
}
/* Ensure proper section content positioning */
.portal-main-v2 section > * {
  position: relative;
  z-index: 1;
}
.portal-main-v2 .how-to-section > * {
  position: relative;
  z-index: 2;
}
.hero-bg-slideshow {
  z-index: 6 !important;
}
/* Hero Section - Full viewport with centered content */
.portal-main-v2 .hero-section {
  position: relative;
  min-height: 100vh; /* Keep hero at full height for impact */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  z-index: 0;
}
.hero-bg-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
/* Minting Section Layout */
.portal-main-v2 .minting-section-v2 {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  min-height: 80vh; /* Reduced from 100vh */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.minting-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.minting-header {
  text-align: center;
  margin-bottom: 3rem;
}
.portal-main-v2 .minting-section-v2 .minting-main {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.portal-main-v2 .tribe-section {
  width: 100%;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(5px);
}
.tribe-section-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--golden);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.tribe-description-container {
  margin-bottom: 2rem;
  text-align: center;
}
.tribe-description-main {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.tribe-description-sub {
  font-size: 1rem;
  color: var(--light-grey);
  font-style: italic;
}
.tribe-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}
.tribe-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.tribe-logo-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.tribe-name {
  color: var(--golden);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
}
.portal-main-v2 .minting-info-card {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.minting-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
  border-radius: 8px;
  gap: 0.5rem;
}
.mint-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--light-grey);
  padding: 0.8rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.mint-tab.active {
  background: var(--dragon-red);
  color: var(--golden);
  box-shadow: 0 2px 8px rgba(151, 12, 0, 0.4);
}
.minting-details {
  background: rgba(27, 27, 27, 0.9);
  border: 1px solid var(--golden);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.minting-details h3 {
  color: var(--golden);
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 172, 113, 0.3);
  padding-bottom: 1rem;
}
.details-grid {
  display: grid;
  gap: 1rem;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}
.detail-label {
  color: var(--light-grey);
  font-weight: 500;
}
.detail-value {
  color: #fff;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}
.status-open {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}
.contract-button {
  background: rgba(197, 172, 113, 0.1);
  border: 1px solid var(--golden);
  color: var(--golden);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contract-button:hover {
  background: var(--golden);
  color: var(--dark-grey);
}
.how-to-chart-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(197, 172, 113, 0.6));
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(197, 172, 113, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(197, 172, 113, 0.9));
  }
}
.hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: var(--dragon-red);
  text-shadow: 
    0 0 20px rgba(151, 12, 0, 0.8),
    0 0 40px rgba(151, 12, 0, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.9);
  margin: 0 auto 1.5rem auto;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: var(--golden);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 0, 0, 0.8);
  font-family: 'Cinzel', serif;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
}
.hero-cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.cta-button:hover::before {
  width: 300px;
  height: 300px;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.cta-primary {
  background: linear-gradient(135deg, var(--dragon-red), #b01000);
  color: var(--golden);
  box-shadow: 
    0 8px 24px rgba(151, 12, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid var(--golden);
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(151, 12, 0, 0.7),
    0 0 40px rgba(197, 172, 113, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #b01000, var(--dragon-red));
}
.cta-secondary {
  background: transparent;
  color: var(--golden);
  border: 2px solid var(--golden);
  font-family: 'Cinzel', serif;
  font-weight: 600;
}
.cta-secondary:hover {
  background: var(--golden);
  color: var(--dark-grey);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 172, 113, 0.4);
}
/* Features Grid Section */
.portal-main-v2 .features-section {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  min-height: 80vh; /* Reduced from 100vh */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dragon-red);
  margin: 0 auto 1rem auto;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Cinzel', serif;
  text-shadow: 
    0 0 20px rgba(151, 12, 0, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: block;
  text-align: center;
}
.section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: var(--golden);
  margin: 1rem auto 0;
  box-shadow: 0 0 10px var(--golden);
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-grey);
  margin-bottom: 4rem;
  font-family: 'Cinzel', serif;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: block;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.feature-card {
  background: rgba(27, 27, 27, 0.8);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--golden);
  box-shadow: 0 10px 30px rgba(197, 172, 113, 0.2);
  background: rgba(27, 27, 27, 0.95);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(197, 172, 113, 0.4));
}
.feature-title {
  font-size: 1.5rem;
  color: var(--golden);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}
.feature-description {
  color: var(--light-grey);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.feature-cta {
  background: transparent;
  color: var(--dragon-red);
  border: 1px solid var(--dragon-red);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-cta:hover {
  background: var(--dragon-red);
  color: var(--golden);
  box-shadow: 0 0 15px rgba(151, 12, 0, 0.4);
}
.feature-cta.disabled {
  border-color: var(--light-grey);
  color: var(--light-grey);
  cursor: not-allowed;
  opacity: 0.6;
}
.feature-cta.disabled:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}
/* How To Section - Timeline Style */
.portal-main-v2 .how-to-section {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  min-height: 80vh; /* Reduced from 100vh */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}
.portal-main-v2 .how-to-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dragon-red), var(--golden));
  box-shadow: 0 0 20px rgba(151, 12, 0, 0.5);
}
.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dragon-red), #b01000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--golden);
  flex-shrink: 0;
  box-shadow: 
    0 8px 24px rgba(151, 12, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  border: 3px solid var(--golden);
  font-family: 'Cinzel', serif;
}
.timeline-content {
  flex: 1;
  background: rgba(27, 27, 27, 0.95);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.timeline-content:hover {
  border-color: var(--golden);
  box-shadow: 0 12px 32px rgba(151, 12, 0, 0.3);
  background: rgba(27, 27, 27, 0.98);
}
.timeline-content h3 {
  font-size: 1.75rem;
  color: var(--golden);
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
  text-shadow: 
    0 0 20px rgba(197, 172, 113, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.8);
}
.timeline-content p {
  font-size: 1.1rem;
  color: var(--light-grey);
  line-height: 1.8;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
/* Footer CTA Section */
.footer-cta {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  text-align: center;
  min-height: 60vh; /* Reduced from 100vh */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}
.footer-cta h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dragon-red);
  margin: 0 auto 2rem auto;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Cinzel', serif;
  text-shadow: 
    0 0 20px rgba(151, 12, 0, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: block;
  text-align: center;
}
.footer-cta p {
  font-size: 1.5rem;
  color: var(--golden);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 8px;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .minting-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
  }
}
/* Zoom-specific adjustments */
@media (min-width: 1920px) {
  .portal-main-v2 {
    max-width: 100vw;
  }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .hero-subtitle,
  .section-subtitle {
    font-size: 1.5rem;
  }
}
/* Scroll Indicators */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--golden);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--golden);
  border-bottom: 2px solid var(--golden);
  transform: rotate(45deg);
  animation: chevron-bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes chevron-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-5px);
  }
  60% {
    transform: rotate(45deg) translateY(-2.5px);
  }
}
/* Handle extreme zoom out */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-card,
  .minting-details,
  .timeline-content {
    padding: 1.5rem;
  }
}
/* Extended Game Gallery Section */
.portal-main-v2 .extended-game-gallery {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: linear-gradient(135deg, var(--dark-grey) 0%, rgba(151, 12, 0, 0.1) 100%);
  position: relative;
  min-height: 80vh; /* Reduced from 100vh */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.extended-game-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/PortalPage_BG.jpg') center/cover;
  opacity: 0.1;
  z-index: -1;
}
.extended-game-gallery .game-gallery {
  margin-top: 0;
  background: rgba(27, 27, 27, 0.8);
  border: 2px solid var(--golden);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(197, 172, 113, 0.3);
}
.extended-game-gallery .game-gallery-header h2 {
  color: var(--golden);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.extended-game-gallery .game-gallery-header p {
  color: var(--light-grey);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.extended-game-gallery .game-card {
  background: rgba(27, 27, 27, 0.9);
  border: 2px solid rgba(197, 172, 113, 0.4);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.extended-game-gallery .game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 172, 113, 0.2), transparent);
  transition: left 0.6s ease;
}
.extended-game-gallery .game-card:hover::before {
  left: 100%;
}
.extended-game-gallery .game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--golden);
  box-shadow: 0 15px 40px rgba(197, 172, 113, 0.4);
}
.extended-game-gallery .game-info h3 {
  color: var(--golden);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.6rem;
}
.extended-game-gallery .game-info p {
  color: var(--light-grey);
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .extended-game-gallery .game-gallery {
    padding: 1.5rem;
  }
  
  .extended-game-gallery .game-card {
    padding: 1rem;
  }
}
/* Congratulations Celebration Animation */
.congratulations-message {
  position: relative;
  z-index: 1000;
}
.congratulations-content {
  background: linear-gradient(135deg, rgba(151, 12, 0, 0.95) 0%, rgba(197, 172, 113, 0.95) 100%);
  border: 3px solid var(--golden);
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  box-shadow: 
    0 0 50px rgba(197, 172, 113, 0.8),
    0 0 100px rgba(151, 12, 0, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.congratulations-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.congratulations-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(197, 172, 113, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0 0 1rem 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: glow-pulse 2s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(197, 172, 113, 0.6); }
  100% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(197, 172, 113, 0.8); }
}
.congratulations-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin: 0 0 2rem 0;
  font-weight: 600;
}
.congratulations-emoji {
  font-size: 3rem;
  animation: bounce-emoji 1s ease-in-out infinite;
}
@keyframes bounce-emoji {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}
/* NFT Display Styles */
.minted-nft-display {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nft-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--golden);
  box-shadow: 
    0 0 30px rgba(197, 172, 113, 0.6),
    0 0 60px rgba(151, 12, 0, 0.4);
  animation: nft-float 3s ease-in-out infinite;
}
@keyframes nft-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
.minted-nft-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.minted-nft-image:hover {
  transform: scale(1.05);
}
.nft-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--golden), transparent, var(--golden));
  border-radius: 15px;
  z-index: -1;
  animation: glow-rotate 3s linear infinite;
}
@keyframes glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.nft-details {
  text-align: center;
  animation: fade-in-up 1s ease-out;
}
@keyframes fade-in-up {
  0% { 
    opacity: 0;
    transform: translateY(20px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}
.nft-name {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--golden);
  text-shadow: 0 0 15px rgba(197, 172, 113, 0.8);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nft-token-id {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 600;
}
.animate-celebration {
  animation: celebration-entrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes celebration-entrance {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}
/* Mobile responsiveness for congratulations */
@media (max-width: 768px) {
  .congratulations-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .congratulations-title {
    font-size: 2rem;
  }
  
  .congratulations-subtitle {
    font-size: 1.2rem;
  }
  
  .congratulations-emoji {
    font-size: 2rem;
  }
  
  .nft-image-container {
    width: 150px;
    height: 150px;
  }
  
  .nft-name {
    font-size: 1.4rem;
  }
  
  .nft-token-id {
    font-size: 1rem;
  }
}

.game-gallery {
    margin-top: 15rem;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.game-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-gallery-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-gallery-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #0460ff;
    box-shadow: 0 10px 30px rgba(4, 96, 255, 0.3);
}

.game-icon-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.game-icon {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-icon {
    transform: scale(1.05);
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.game-info p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .game-gallery {
        margin-top: 4rem;
        padding: 1rem;
    }
    
    .game-gallery-header h2 {
        font-size: 2rem;
    }
    
    .game-gallery-header p {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .game-card {
        padding: 1rem;
    }
    
    .game-icon-wrapper {
        height: 150px;
    }
    
    .game-info h3 {
        font-size: 1.2rem;
    }
    
    .game-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .game-gallery {
        margin-top: 2rem;
        padding: 0.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-icon-wrapper {
        height: 120px;
    }
    
    .game-icon {
        width: 120px !important;
        height: 120px !important;
    }
}

