.svd2-wrapper {
    max-width: 720px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
}

.svd2-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #222;
}

.svd2-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.svd2-input:focus {
    border-color: #0b74de;
}

.svd2-actions {
    margin-top: 12px;
    text-align: center;
}

.svd2-btn {
    padding: 10px 18px;
    background: #0b74de;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease;
}

.svd2-btn:hover {
    background: #095cb5;
}

.svd2-status {
    margin-top: 14px;
    color: #555;
    text-align: center;
    font-size: 14px;
}

.svd2-result {
    margin-top: 14px;
    text-align: center;
}

.svd2-player-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect */
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.svd2-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.svd2-download {
    display: inline-block;
    padding: 10px 16px;
    background: #28a745;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s ease;
}

.svd2-download:hover {
    background: #218838;
}

@media (max-width: 480px) {
    .svd2-wrapper {
        padding: 14px;
    }
    .svd2-title {
        font-size: 17px;
    }
    .svd2-input {
        font-size: 14px;
    }
    .svd2-btn, .svd2-download {
        font-size: 14px;
        padding: 8px 14px;
    }
}
