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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(74, 158, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.logo .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #ff8c00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 500;
}

.description {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.highlight-box {
    background: rgba(255, 107, 0, 0.08);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.highlight-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.highlight-box strong {
    color: #ff8c00;
    font-weight: 600;
}

.features-section,
.why-solana,
.security-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.feature.highlight {
    background: rgba(99, 102, 241, 0.08);
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.feature.highlight:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.3));
}

.feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
}

.social-btn.twitter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ffa500);
}

.social-btn.contact {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-btn.contact:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.social-btn svg {
    flex-shrink: 0;
}

.footer {
    margin-top: 4rem;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8c00;
}

.footer-links .separator {
    color: #475569;
    margin: 0 0.5rem;
}

/* Why Solana Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-3px);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.stats-description {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Security Section */
.security-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.security-features li {
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.security-features li:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateX(5px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .logo h1 { font-size: 2rem; }
    .title { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .description { font-size: 0.875rem; }
    .highlight-box { padding: 1rem; }
    .highlight-box h3 { font-size: 1.1rem; }
    .highlight-box p { font-size: 0.875rem; }
    .section-title { font-size: 1.5rem; }
    .features { grid-template-columns: 1fr; gap: 1rem; }
    .feature { padding: 1.25rem; }
    .stats { grid-template-columns: 1fr; gap: 1rem; }
    .social-links { flex-direction: column; gap: 0.75rem; }
    .social-btn { width: 100%; justify-content: center; }
}
