.cta-button {
        display: inline-block;
        padding: 0.8rem 2rem;
        background: var(--nav-bg);
        border: 1px solid var(--color-border-medium);
        border-radius: 8px;
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 400;
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        backdrop-filter: var(--backdrop-blur);
        -webkit-backdrop-filter: var(--backdrop-blur);
        z-index: 10;
        margin-top: 2rem;
    }

    .cta-button:hover {
        background: var(--card-border);
        border-color: var(--color-border-heavy);
        transform: translateY(-2px);
    }

    .qrcode {
        width: 18rem;
        height: 18rem;
        padding: 0.8rem 0rem;
        margin-top: 2rem;
        border: 1px solid var(--color-border-medium);
        border-radius: 12px;
        background: var(--nav-bg);
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        backdrop-filter: var(--backdrop-blur);
        -webkit-backdrop-filter: var(--backdrop-blur);
        box-shadow: var(--shadow-md) 2px 2px 10px;
        z-index: 10;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    .hero-content {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero h1 {
        font-size: 8rem;
        font-weight: 650;
        margin-bottom: 1.5rem;
        color: var(--color-primary);
        text-shadow: rgba(0, 0, 0, 0.5) 0 0 4rem;
        line-height: 1.2;
        letter-spacing: -1px;
        z-index: 10;
    }

    .hero-subtitle {
        font-size: 2rem;
        color: var(--color-primary);
        text-shadow: var(--shadow-lg) 0 0 1rem;
        margin-bottom: 2.5rem;
        font-weight: 300;
        line-height: 1.4;
        z-index: 10;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }