:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --primary: #FF4500;
    /* Intense Orange */
    --primary-glow: rgba(255, 69, 0, 0.5);
    --accent: #FFD700;
    /* Gold */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    /* Glassmorphism */
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow);
    }

    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        linear-gradient(to bottom, var(--bg-dark), #1a0500);
}

.hero-logo {
    width: 280px;
    max-width: 80%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.3));
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 900;
    max-width: 900px;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary), #cc3700);
    color: white;
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-glow 3s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--primary-glow);
}

/* Features Grid */
.features-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Ranked Section */
.ranked-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
    text-align: center;
}

.trophy-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.trophy-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.trophy-item:hover .trophy-img {
    transform: scale(1.2) rotate(5deg);
}

.trophy-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: #050505;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .trophy-showcase {
        gap: 1rem;
    }

    .trophy-img {
        width: 60px;
        height: 60px;
    }
}