body {
    margin: 0;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.section_flutuante {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    border-left: 4px solid rgb(0, 201, 89);
    max-width: 600px;
    width: 90%;
    text-align: center;
    margin: 30px auto 0;
}

.section_flutuante:hover {
    border-left-color: #03b04e;
    transition: .2s linear;
}

.congratulations-title {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    word-break: break-word;
}

.reserved-text {
    color: #495057;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 40px 0;
    line-height: 1.4;
}

.watch-text {
    color: #495057;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.watch-text .highlight {
    font-weight: 600;
    color: #2c3e50;
}

.button-container {
    margin-top: 30px;
}

.continue-button {
    display: inline-block;
    font-weight: 700;
    color: white;
    background-color: rgb(0, 201, 89);
    padding: 20px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    width: 90%;
    max-width: 400px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.continue-button:hover {
    background-color: #03b04e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 201, 89, 0.3);
}

@media (max-width: 600px) {
    .section_flutuante {
        margin: 20px 0;
        padding: 30px 15px;
        width: 95%;
    }
    
    .congratulations-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .reserved-text {
        font-size: 16px;
    }

    .watch-text {
        font-size: 14px;
    }

    .continue-button {
        font-size: 14px;
        padding: 10px 15px;
        min-height: 45px;
    }
}