/* General Reset and Base Styles */
:root {
    --primary-color: #f7075f; /* EliteTokens main color is a bright pink/red */
    --secondary-color: #272727;
    --background-color: #121212;
    --text-color: #f0f0f0;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--text-color);
}

/* ======================= HEADER / NAVIGATION STYLES ======================= */
header {
    background-color: rgba(18, 18, 18, 0.95); /* Slightly transparent dark background */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Fixed navigation bar */
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
}

nav a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 1em;
    padding: 5px 10px;
}

.cta-discord {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-discord:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* ======================= SECTION STYLES ======================= */
.section-content {
    padding: 80px 5%;
    text-align: center;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Offset for fixed header */
    background: url('https://picsum.photos/1920/1080?random=1') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 1;
}

.hero * {
    z-index: 2; /* Bring content above the overlay */
}

.hero h1, .hero p {
    max-width: 800px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #ff3377; /* Slightly lighter pink on hover */
    transform: translateY(-2px);
}

/* Card Styles (Features & Pricing) */
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card, .price-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card h3, .price-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
}

.pricing-section {
    background-color: #1a1a1a;
}

.price-card {
    text-align: center;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.price {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--text-color);
    margin: 15px 0;
}

.price-card.featured {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: scale(1.05); /* Highlight the featured card */
    box-shadow: 0 0 20px rgba(247, 7, 95, 0.5);
}

.featured h3 {
    color: var(--background-color);
}

.buy-button {
    display: block;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.featured .buy-button {
    background-color: var(--background-color);
    color: var(--primary-color);
}

.featured .buy-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Contact Section */
.contact-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.discord-button {
    background-color: #7289da; /* Discord blue */
}

.discord-button:hover {
    background-color: #8c9eff;
}

/* ======================= FOOTER STYLES ======================= */
footer {
    background-color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

footer a {
    color: var(--text-color);
}

/* ======================= MEDIA QUERIES (Responsiveness) ======================= */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 10px;
    }
    nav a {
        margin: 5px 10px;
    }
    .hero {
        padding: 100px 5% 50px;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    nav a:not(.cta-discord) {
        display: none; /* Hide non-essential links on small screens for cleaner view */
    }
    .cta-discord {
        margin: 0 5px;
    }
    .card, .price-card {
        width: 100%;
        max-width: 400px;
    }
}