:root {
    --solana-purple: #9945FF;
    --solana-cyan: #14F195;
    --bg-dark: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-hover: #252525;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(153, 69, 255, 0.15) 0%, rgba(10, 10, 10, 1) 100%);
}

.banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -100px;
}

.app-icon {
    width: 150px;
    height: 150px;
    border-radius: 32px;
    border: 4px solid var(--solana-purple);
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.6);
    background-color: var(--bg-dark);
    z-index: 10;
}

h1 {
    font-size: 4rem;
    margin: 30px 0 10px;
    background: linear-gradient(90deg, var(--solana-purple), var(--solana-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--solana-purple), #7a35cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(153, 69, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.6);
}

.section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
}

.section:hover {
    border-color: rgba(20, 241, 149, 0.3);
}

h2 {
    font-size: 2.2rem;
    color: var(--solana-cyan);
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    color: var(--solana-purple);
    margin-top: 0;
}

.roadmap-item {
    padding-left: 30px;
    border-left: 2px solid var(--solana-purple);
    margin-bottom: 30px;
    position: relative;
}

.roadmap-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--solana-cyan);
    box-shadow: 0 0 10px var(--solana-cyan);
}

.status-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 10px;
}

.status-completed { background: var(--solana-cyan); color: black; }
.status-upcoming { background: var(--solana-purple); color: white; }

.faq-item {
    margin-bottom: 20px;
}

.faq-item strong {
    color: var(--solana-purple);
    display: block;
    margin-bottom: 5px;
}

footer {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(20, 241, 149, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
    color: var(--text-gray);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--solana-cyan);
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(90deg, rgba(153, 69, 255, 0.1), transparent);
    border-radius: 20px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--solana-purple);
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.3);
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .logo-container { margin-top: -60px; }
    .app-icon { width: 100px; height: 100px; }
}
