
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0D0D0D 0%, #1a0a1a 50%, #0D0D0D 100%);
color: #ffffff;
min-height: 100vh;
overflow-x: hidden;
}

/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
background-image:
radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(212, 175, 55, 0.03) 100px, rgba(212, 175, 55, 0.03) 101px);
pointer-events: none;
}

/* Logo */
.logo-container {
position: relative;
margin-bottom: 2rem;
animation: floatTotem 4s ease-in-out infinite;
}

@keyframes floatTotem {

0%,
100% {
transform: translateY(0px);
}

50% {
transform: translateY(-15px);
}
}

.totem-icon {
width: 120px;
height: 160px;
background: linear-gradient(180deg, #D4AF37 0%, #FF6B35 100%);
clip-path: polygon(30% 0%, 70% 0%, 100% 20%, 90% 40%, 100% 60%, 70% 80%, 70% 100%, 30% 100%, 30% 80%, 0% 60%, 10% 40%, 0% 20%);
margin: 0 auto 1rem;
position: relative;
box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.totem-icon::before {
content: '';
position: absolute;
top: 20%;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 30px;
background: #0D0D0D;
border-radius: 50%;
box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.totem-icon::after {
content: '';
position: absolute;
bottom: 30%;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 20px;
background: #0D0D0D;
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.logo-text {
font-size: 4rem;
font-weight: 900;
letter-spacing: 0.3rem;
background: linear-gradient(45deg, #D4AF37 0%, #FF6B35 50%, #D4AF37 100%);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: shimmer 3s linear infinite;
text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes shimmer {
to {
background-position: 200% center;
}
}

.tagline {
font-size: 1.5rem;
color: #cccccc;
margin: 1rem 0 3rem;
font-weight: 300;
letter-spacing: 0.1rem;
}

/* CTA Button */
.cta-button {
background: linear-gradient(135deg, #D4AF37 0%, #FF6B35 100%);
color: #0D0D0D;
font-size: 1.5rem;
font-weight: 700;
padding: 1.5rem 4rem;
border: none;
border-radius: 50px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.15rem;
box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
transition: all 0.3s ease;
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.3);
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 15px 50px rgba(255, 107, 53, 0.6);
}

.cta-button span {
position: relative;
z-index: 1;
}

/* Games Section */
.games-section {
padding: 5rem 2rem;
background: rgba(26, 26, 26, 0.5);
backdrop-filter: blur(10px);
}

.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
background: linear-gradient(90deg, #D4AF37 0%, #FF6B35 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.game-card {
background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
border: 2px solid rgba(212, 175, 55, 0.2);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}

.game-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
transition: transform 0.5s ease;
}

.game-card:hover::before {
transform: translate(25%, 25%);
}

.game-card:hover {
border-color: #D4AF37;
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.game-icon {
width: 100px;
height: 100px;
margin: 0 auto 1.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
position: relative;
z-index: 1;
}

.game-card:nth-child(1) .game-icon {
background: linear-gradient(135deg, #C1121F 0%, #8B0000 100%);
box-shadow: 0 10px 30px rgba(193, 18, 31, 0.5);
}

.game-card:nth-child(2) .game-icon {
background: linear-gradient(135deg, #2D7A6B 0%, #1a4d42 100%);
box-shadow: 0 10px 30px rgba(45, 122, 107, 0.5);
}

.game-card:nth-child(3) .game-icon {
background: linear-gradient(135deg, #FF6B35 0%, #d4521f 100%);
box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.game-card h3 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
color: #D4AF37;
position: relative;
z-index: 1;
}

.game-card p {
color: #999;
font-size: 0.95rem;
position: relative;
z-index: 1;
}

/* How it works */
.how-it-works {
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.step {
text-align: center;
position: relative;
}

.step-number {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #D4AF37 0%, #FF6B35 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
color: #0D0D0D;
margin: 0 auto 1.5rem;
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.step h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #D4AF37;
}

.step p {
color: #999;
line-height: 1.6;
}

/* Footer */
footer {
text-align: center;
padding: 2rem;
color: #666;
border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
.logo-text {
font-size: 2.5rem;
}

.tagline {
font-size: 1.1rem;
}

.cta-button {
font-size: 1.2rem;
padding: 1.2rem 3rem;
}

.section-title {
font-size: 2rem;
}
}