.hero-content {
    text-align: center;
}

.banner {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glitch-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin: 12px 0 40px;
    font-weight: 500;
}

.content-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.how-to-start {
    text-align: left;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.how-to-start h3 {
    margin-top: 0;
    color: #fff;
}

.how-to-start ol {
    color: var(--text-secondary);
    padding-left: 20px;
    margin-bottom: 0;
}

.how-to-start li {
    margin-bottom: 12px;
}

.how-to-start li:last-child {
    margin-bottom: 0;
}

.cta-group {
    margin: 40px 0;
}

.primary-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 20px 48px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px var(--accent-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--accent-glow);
    background: #9333ea;
}

.qr-wrapper {
    margin-top: 40px;
}

.qr-frame {
    background: #ffffff;
    padding: 24px;
    border-radius: 28px;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.f-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 32px 24px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.f-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.f-item b { font-size: 32px; display: block; margin-bottom: 12px; }
.f-item p { margin: 0; font-size: 14px; color: var(--text-secondary); font-weight: 600; }

@media (max-width: 768px) {
    .features-row { grid-template-columns: 1fr; }
    .glitch-title { font-size: 2.8rem; }
}