@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --bg: #0a0c12;
    --surface: #11151f;
    --dark: #1a1f2e;
    --text: #e0e4eb;
    --text-muted: #a0a8b8;
    --accent: #3cbef2;
    --accent-dark: #2a9fd4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 12, 18, 0.96);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid #1f2533;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    height: 60px;
    width: auto;
}

nav a {
    color: #b0b8c8;
    text-decoration: none;
    margin-left: 2.8rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

nav a:hover {
    color: var(--accent);
}

.layer {
    min-height: 100vh;
    padding: 130px 2rem 100px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #1f2533;
}

.layer-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

#hero {
    background: linear-gradient(135deg, #0a0c12 0%, #141925 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glitch {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4.8rem, 13vw, 10rem);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: -1.4rem;
    letter-spacing: 6px;
    font-weight: 500;
}

.status {
    margin-top: 4rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0.8rem 1.6rem;
    background: rgba(60, 190, 242, 0.08);
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 50px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.2s infinite ease-in-out;
}

.image-container {
    margin: 3.2rem 0;
    padding: 14px;
    background: var(--surface);
    border: 1px solid #252b3a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    transition: transform 0.4s ease;
}

.image-container:hover {
    transform: translateY(-6px);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #1f2533;
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.8rem;
    padding-left: 1.4rem;
    border-left: 5px solid var(--accent);
}

.description {
    font-size: 1.24rem;
    color: var(--text-muted);
    max-width: 820px;
    margin-bottom: 1.5rem;
}

.info-box {
    background: var(--dark);
    border-left: 6px solid var(--accent);
    padding: 2.2rem;
    margin: 3rem 0;
    font-size: 1.16rem;
    color: #d0d6e3;
    line-height: 1.85;
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.4rem;
    margin-top: 3.2rem;
}

.wallet-card {
    background: var(--dark);
    padding: 2.4rem 2rem;
    border: 1px solid #252b3a;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-card:hover {
    border-color: var(--accent);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(60, 190, 242, 0.12);
}

.wallet-card img {
    width: 100%;
    max-width: 340px;
    margin-bottom: 2rem;
    border: 1px solid #2a3140;
    border-radius: 4px;
}

.wallet-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.ticker {
    color: #8894a8;
    font-size: 1.05rem;
}

.mirrors {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 3rem 0 4rem;
}

.mirror-link {
    display: block;
    background: var(--dark);
    color: var(--accent);
    padding: 1.35rem 1.8rem;
    text-decoration: none;
    font-family: monospace;
    font-size: 1.12rem;
    word-break: break-all;
    border: 1px solid #252b3a;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: #22293b;
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(60, 190, 242, 0.15);
}

.warning {
    color: #ff7777;
    font-weight: 500;
    margin: 1.8rem 0 1.2rem;
    font-size: 1.1rem;
}

footer {
    background: #080a0f;
    padding: 4.5rem 2rem 3.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.96rem;
    border-top: 1px solid #1f2533;
}

.disclaimer {
    margin-top: 1.8rem;
    font-size: 0.88rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem 1.2rem;
    }
    
    nav a {
        margin: 0 1rem;
        font-size: 0.98rem;
    }
    
    .layer {
        padding: 110px 1.2rem 80px;
    }
    
    h2 {
        font-size: 2.35rem;
    }
    
    .wallets-grid {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        margin: 2.5rem 0;
    }
}