body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #232323;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global_container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 30px;
    box-sizing: border-box;
}

.video {
    width: 300px;
    border-radius: 20px;
}

.container {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.headline {
    margin-bottom: 2.5rem;
}

.crossed {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: #b3b3b3;
    position: relative;
    opacity: 0.6;
}

.crossed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    height: 12px;
    background: #fff;
    border-radius: 6px;
    transform: rotate(-3deg);
}

.dumb {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    color: #f6c16b;
    letter-spacing: 1px;
}

.subtitle {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.cta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    justify-content: left;
}

.appstore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.appstore-btn img {
    height: 64px;
    width: auto;
    display: block;
}

.qr-placeholder {
    width: 64px;
    height: 64px;
    background: #b3e0fc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #232323;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

@media (max-width: 900px) {

    .container { 
        text-align: center;
    }

    .cta-row {
        align-items: center;
        justify-content: center;
    }

    .global_container {
        flex-direction: column;
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 50px;
    }

    .headline .crossed, .headline .dumb {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
} 