:root {
    --primary: #FFB800;
    --primary-glow: rgba(255, 184, 0, 0.4);
    --bg-dark: #0F0F13;
    --bg-card: #1A1A24;
    --text-main: #FFFFFF;
    --text-muted: #A0A0B0;
    --glass-bg: rgba(26, 26, 36, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 184, 0, 0.05), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(200, 50, 255, 0.05), transparent 25%);
}

h1, h2, h3, .nav-logo {
    font-family: 'Rowdies', cursive;
}

/* Typography */
a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-logo {
    width: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FFB800, #FF8C00);
    color: #111;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px var(--primary-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-primary.mini {
    padding: 10px 25px;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 184, 0, 0.6);
    color: #000;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    background: -webkit-linear-gradient(#FFB800, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

/* 3D Graphics container */
.hero-graphics {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.center-piece {
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
}

.hero-img {
    width: 350px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotateY(-15deg) rotateX(5deg);
    border: 2px solid var(--primary);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.floating-item {
    position: absolute;
    font-size: 4rem;
    user-select: none;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
}

.coin-1 { top: 10%; left: 10%; }
.coin-2 { bottom: 20%; right: 5%; font-size: 3rem;}
.coin-3 { top: 30%; right: 15%; font-size: 2.5rem;}
.gem-1 { bottom: 30%; left: 5%; font-size: 4.5rem;}
.pickaxe { top: 15%; right: 30%; }

/* Features */
.features {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.feature-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.f-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* CTA Box */
.cta-section {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.cta-box {
    text-align: center;
    padding: 60px;
    max-width: 600px;
    width: 100%;
}

.cta-app-icon {
    width: 100px;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    padding: 50px 10%;
    background: #08080A;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { margin: 0 auto 30px auto; }
    .hero-graphics { height: 400px; margin-top: 30px; }
    .hero-img { width: 250px; }
}
