:root {
    --primary-color: #FFD700;
    --background-color: #5B253A;
    --text-color: white;
    --card-background: rgba(255, 255, 255, 0.1);
    --footer-background: #333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    color: white;
    text-align: center;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 37, 58, 0.9), rgba(91, 37, 58, 0.8));
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1002;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    background: var(--primary-color);
    color: black;
    margin: 10px;
}

.btn:hover {
    transform: translateY(-2px);
    background: #ffd900e6;
}

.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary:hover {
    background-color: var(--primary-color);
    color: black;
}

.countdown {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    margin-bottom: 4rem;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.about-images img {
    max-width: 300px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-image {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat h3 {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--footer-background);
    color: white;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .about-images img {
        max-width: 100%;
    }

    .hero {
        padding: 100px 20px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1001;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d1320;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1001;
    border-radius: 0.5rem;
    border: 2px solid var(--primary-color);
    padding: 8px 0;
    top: calc(100% + 5px);
}

/* Create an invisible bridge to prevent menu from closing */
.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent var(--primary-color) transparent;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    background: #2d1320;
    margin: 4px 8px;
    border-radius: 0.3rem;
}

.dropdown-content a:hover {
    background-color: #3d1b2b;
    transform: translateX(5px);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .dropdown-content {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 5px;
    }

    .dropdown-content::before {
        display: none;
    }
} 