:root {
    --gold: #FFD700;
    --blue: #0077FF;
    --blue-hover: #0055CC;
    --dark: #0A0A10;
    --text: #ffffff;
}

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


body, html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    overflow: hidden;
}

.font-display {
    font-family: 'Luckiest Guy', cursive;
}

.font-historical {
    font-family: 'Cinzel', serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    position: relative;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://img.suvuzu.com/Store/imgame/img9_HOH.jpeg');
    background-size: cover;
    background-position: center;
	
	min-height: 100svh;
	height: auto;
	padding: 8px 0 32px;
	
}



.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,16,0.3), rgba(10,10,16,0.95));
}


.content {
  position: relative;
  z-index: 10;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
    
    
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
	
	height: clamp(80px, 12vw, 130px);
	margin: 0 auto 20px;
}

h1 {
    
    font-weight: 800;
    text-transform: uppercase;
    
    
    
	
	font-size: clamp(2.0rem, 6vw, 2rem);
	line-height: 1.05;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

h1 span {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

p {
    
    color: #dfdfdf;
    margin: 0 auto 24px;
    line-height: 1.5;
    font-weight: 300;
	
	font-size: clamp(1rem, 2.5vw, 1.35rem);
    max-width: 780px;
}

p strong {
    color: #fff;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: var(--blue);
    color: white;
    /*padding: 24px 64px;
	font-size: 1.8rem;*/
    border-radius: 60px;
    text-decoration: none;
    
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 40px rgba(0, 119, 255, 0.5);
    position: relative;
    overflow: hidden;
	
	font-size: clamp(1.3rem, 2.6vw, 3rem);
	padding: 18px 36px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-button:hover {
    background-color: var(--blue-hover);
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(0, 119, 255, 0.7);
}

.labels {
    /*margin-top: 25px;
    font-size: 0.75rem;
	color: #888;*/
	
    text-transform: uppercase;
    letter-spacing: 3px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
	
	
  margin-top: 16px;
  font-size: 0.85rem;
  color: #c7c7c7;
  flex-wrap: wrap;
}

.labels .dot {
    color: #444;
}

.footer-minimal {
    /*position: absolute;
	font-size: 0.6rem;
	color: #444;*/
	
    bottom: 20px;
    
    text-transform: uppercase;
    letter-spacing: 2px;
    
	
	
  position: static;
  margin-top: 18px;
  font-size: 0.75rem;
  color: #9a9a9a;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    p { font-size: 1.1rem; }
    .logo { height: 120px; }
    .cta-button { font-size: 1.4rem; padding: 20px 40px; }
}
/*
.benefits {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.benefits li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

*/

.benefits {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.benefits li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  animation: benefitBlink 3s infinite;
}

.benefits li:nth-child(1) {
  animation-delay: 0s;
}

.benefits li:nth-child(2) {
  animation-delay: 1s;
}

.benefits li:nth-child(3) {
  animation-delay: 2s;
}

@keyframes benefitBlink {
  0%, 20%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    border-color: rgba(255,255,255,0.12);
  }

  10% {
    opacity: 1;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
    border-color: rgba(255, 215, 0, 0.7);
  }
}