* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf3f6;
    /* Much closer to the screenshot's blush */
    color: #333;
    line-height: 1.25;
    display: flex;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.main-wrapper {
    width: 100%;
    max-width: 400px;
    /* Constrained for mobile feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.headline {
    font-size: 28.8px;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.5px;
    line-height: 1.2;
    /* Adjusted to match the tight spacing in the screenshot */
}

.highlight {
    color: #cf34cf;
    /* Vibrant magenta/pink */
}

.video-section {
    width: 100%;
    margin-bottom: 25px;
}

.footer-text {
    width: 100%;
}

.instruction {
    font-size: 15.2px;
    color: #4b5563;
    font-weight: 500;
    margin: -10px 0 20px;
}

.warning {
    font-size: 12.8px;
    color: #666666;
    font-weight: 400;
    line-height: 1.5;
    margin: 15px 0 0;
}

.warning strong {
    color: #4a4a4a;
    font-weight: 700;
}

.warning u {
    text-decoration: underline;
}