/* General Styles */
:root {
    --navy: #0a0a2a;
    --deep-violet: #2a0a4a;
    --neon-purple: #a020f0;
    --neon-blue: #00ffff;
    --text-color: #e0e0e0;
    --light-gray: #b0b0b0;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif; /* Default sans-serif font */
    background: linear-gradient(135deg, var(--navy), var(--deep-violet));
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-family: 'Arial Black', sans-serif; /* Bold, futuristic font for headings */
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

p {
    font-family: 'Arial', sans-serif; /* Sleek and minimal body text */
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: center;
    min-height: 100vh;
    text-align: left; /* Align text to the left */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align container content to the left */
    padding-left: 5%; /* Add some padding from the left edge */
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center logo and subtext within its container */
    margin-bottom: 30px;
    position: absolute; /* Position absolutely for top-left */
    top: 50px; /* Adjust as needed */
    left: 5%; /* Adjust as needed */
}

.hero-logo-container .logo {
    width: 80px; /* Smaller logo */
    height: auto; /* Maintain aspect ratio */
    max-height: 80px;
    object-fit: contain;
    animation: pulse 2s infinite alternate;
}

.logo-subtext {
    font-family: 'Arial', sans-serif;
    font-size: 0.9em;
    color: var(--text-color);
    text-align: center;
    margin-top: 5px;
    line-height: 1.2;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-headline {
    font-size: 3.2em; /* Adjusted font size */
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.2;
    color: var(--text-color);
    text-shadow: none;
    max-width: 700px; /* Added max-width for better control */
}

.hero-subtext {
    font-size: 1.1em; /* Adjusted font size */
    margin-bottom: 40px;
    color: var(--light-gray);
    text-align: left;
    max-width: 500px; /* Adjusted max-width for better readability */
}

.hero-ctas {
    display: flex;
    gap: 20px; /* Space between buttons */
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* General glow */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-cta {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    box-shadow: 0 0 15px var(--neon-purple), 0 0 30px var(--neon-blue);
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--neon-purple), 0 0 50px var(--neon-blue);
}

.secondary-cta {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.secondary-cta:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px var(--neon-blue);
}

/* Rewards Showcase Section */
.rewards-showcase {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    border-radius: 10px;
}

.rewards-table {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    overflow: hidden; /* Ensures rounded corners for inner elements */
}

.rewards-table-header {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.4); /* Darker header background */
    padding: 15px 25px;
    font-weight: bold;
    color: var(--neon-blue);
    font-size: 1.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-tier {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px; /* Increased padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;
}

.reward-tier:last-child {
    border-bottom: none;
}

.reward-tier span:first-child {
    font-weight: bold;
    color: var(--neon-purple);
}

.reward-tier span:last-child {
    color: var(--neon-blue);
    font-weight: bold;
}

.rewards-showcase .note {
    margin-top: 30px;
    font-style: italic;
    color: var(--light-gray);
}

/* Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    position: relative;
}

.roadmap-section .container {
    max-width: 800px; /* Constrain width for roadmap content */
}

.roadmap-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5em;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.roadmap-phase {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    position: relative;
    padding-left: 60px; /* Space for the circle/line */
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 35px;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    z-index: 1;
}

.roadmap-phase:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 50px;
    bottom: -40px; /* Extend line to next phase */
    width: 2px;
    background-color: rgba(0, 255, 255, 0.3); /* Neon blue line */
    z-index: 0;
}

.roadmap-phase h3 {
    text-align: left;
    font-size: 1.8em;
    color: var(--neon-purple);
    text-shadow: none;
    margin-bottom: 5px;
}

.phase-date {
    text-align: left;
    font-size: 0.9em;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.roadmap-phase ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roadmap-phase ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.roadmap-phase ul li::before {
    content: '•'; /* Bullet point */
    color: var(--neon-blue);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Footer Section */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--neon-blue);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-purple);
}

.telegram-sticker {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-purple);
    display: inline-block;
    text-decoration: none;
}

.telegram-sticker:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
}

.disclaimer {
    font-size: 0.9em;
    color: var(--light-gray);
    margin-top: 30px;
}

.token-info {
    font-size: 0.9em;
    color: var(--light-gray);
    margin-top: 15px;
    font-family: monospace;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 5px;
    word-break: break-all;
    max-width: 600px;
    margin: 20px auto 0;
}

.crypto-warning {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crypto-warning h4 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-shadow: none;
}

.crypto-warning p {
    font-size: 0.85em;
    color: var(--light-gray);
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .overview-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .rewards-table {
        padding: 15px;
    }

    .reward-tier {
        font-size: 1em;
    }

    .social-links a {
        margin: 0 10px;
        font-size: 1em;
    }

    .telegram-sticker {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
